Skip to content

Commit a184939

Browse files
Balandatfacebook-github-bot
authored andcommitted
Release 0.2.3 (#427)
Summary: Pull Request resolved: #427 Pairwise GP for Preference Learning, Sampling Strategies. Reviewed By: danielrjiang Differential Revision: D21247037 fbshipit-source-id: 417af8825a46fab596f141d306a47fb3258544d6
1 parent 6e08992 commit a184939

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

CHANGELOG.md

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

33
The release log for BoTorch.
44

5+
6+
## [0.2.3] - Apr 27, 2020
7+
8+
Pairwise GP for Preference Learning, Sampling Strategies.
9+
10+
#### Compatibility
11+
* Require PyTorch >=1.5 (#423).
12+
* Require GPyTorch >=1.1.1 (#425).
13+
14+
#### New Features
15+
* Add `PairwiseGP` for preference learning with pair-wise comparison data (#388).
16+
* Add `SamplingStrategy` abstraction for sampling-based generation strategies, including
17+
`MaxPosteriorSampling` (i.e. Thompson Sampling) and `BoltzmannSampling` (#218, #407).
18+
19+
#### Deprecations
20+
* The existing `botorch.gen` module is moved to `botorch.generation.gen` and imports
21+
from `botorch.gen` will raise a warning (an error in the next release) (#218).
22+
23+
#### Bug fixes
24+
* Fix & update a number of tutorials (#394, #398, #393, #399, #403).
25+
* Fix CUDA tests (#404).
26+
* Fix sobol maxdim limitation in `prune_baseline` (#419).
27+
28+
#### Other changes
29+
* Better stopping criteria for stochastic optimization (#392).
30+
* Improve numerical stability of `LinearTruncatedFidelityKernel` (#409).
31+
* Allow batched `best_f` in `qExpectedImprovement` and `qProbabilityOfImprovement`
32+
(#411).
33+
* Introduce new logger framework (#412).
34+
* Faster indexing in some situations (#414).
35+
* More generic `BaseTestProblem` (9e604fe2188ac85294c143d249872415c4d95823).
36+
37+
538
## [0.2.2] - Mar 6, 2020
639

740
Require PyTorch 1.4, Python 3.7 and new features for active learning,

botorch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from .utils import manual_seed
2424

2525

26-
__version__ = "0.2.2"
26+
__version__ = "0.2.3"
2727

2828

2929
__all__ = [

0 commit comments

Comments
 (0)