Skip to content

Commit 6a5be97

Browse files
Daniel Jiangfacebook-github-bot
authored andcommitted
Release v0.2.2 (pytorch#387)
Summary: Pull Request resolved: pytorch#387 Release new BoTorch version 0.2.2 Reviewed By: Balandat Differential Revision: D20310561 fbshipit-source-id: ae7df68bb5a11b02db9a458a2da962a1041a2950
1 parent a36c2e6 commit 6a5be97

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,37 @@
22

33
The release log for BoTorch.
44

5+
## [0.2.2] - Mar 6, 2020
6+
7+
Require PyTorch 1.4, Python 3.7 and new features for active learning,
8+
multi-fidelity optimization, and a number of bug fixes.
9+
10+
#### Compatibility
11+
* Require PyTorch >=1.4 (#379).
12+
* Require Python >=3.7 (#378).
13+
14+
#### New Features
15+
* Add `qNegIntegratedPosteriorVariance` for Bayesian active learning (#377).
16+
* Add `FixedNoiseMultiFidelityGP`, analogous to `SingleTaskMultiFidelityGP` (#386).
17+
* Support `scalarize_posterior` for m>1 and q>1 posteriors (#374).
18+
* Support `subset_output` method on multi-fidelity models (#372).
19+
* Add utilities for sampling from simplex and hypersphere (#369).
20+
21+
#### Bug fixes
22+
* Fix `TestLoader` local test discovery (#376).
23+
* Fix batch-list conversion of `SingleTaskMultiFidelityGP` (#370).
24+
* Validate tensor args before checking input scaling for more
25+
informative error messaages (#368).
26+
* Fix flaky `qNoisyExpectedImprovement` test (#362).
27+
* Fix test function in closed-loop tutorial (#360).
28+
* Fix num_output attribute in BoTorch/Ax tutorial (#355).
29+
30+
#### Other changes
31+
* Require output dimension in `MultiTaskGP` (#383).
32+
* Update code of conduct (#380).
33+
* Remove deprecated `joint_optimize` and `sequential_optimize` (#363).
34+
35+
536
## [0.2.1] - Jan 15, 2020
637

738
Minor bug fix release.

botorch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from .utils import manual_seed
2020

2121

22-
__version__ = "0.2.1"
22+
__version__ = "0.2.2"
2323

2424

2525
__all__ = [

0 commit comments

Comments
 (0)