Skip to content

Commit 0896b42

Browse files
sdaultonfacebook-github-bot
authored andcommitted
Version 0.3.0: Multi-Objective Bayesian Optimization (pytorch#472)
Summary: Pull Request resolved: pytorch#472 see title Reviewed By: Balandat Differential Revision: D22393843 fbshipit-source-id: 22f071c3e6eaaca3a09dd5db4e23f8b54450000d
1 parent bcf59ce commit 0896b42

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,38 @@
33
The release log for BoTorch.
44

55

6+
## [0.3.0] - July 6, 2020
7+
8+
Multi-Objective Bayesian Optimization
9+
10+
#### New Features
11+
* Multi-Objective Acquisition Functions (#466)
12+
* q-Expected Hypervolume Improvement
13+
* q-ParEGO
14+
* Analytic Expected Hypervolume Improvement with auto-differentiation
15+
* Multi-Objective Utilities (#466)
16+
* Pareto Computation
17+
* Hypervolume Calculation
18+
* Box Decomposition algorithm
19+
* Multi-Objective Test Functions (#466)
20+
* Suite of synthetic test functions for multi-objective, constrained
21+
optimzation
22+
* Multi-Objective Tutorial (#468)
23+
* Abstract ConstrainedBaseTestProblem (#454)
24+
* Add optimize_acqf_list method for sequentially, greedily optimizing 1 candidate
25+
from each provided acquisition function (d10aec911b241b208c59c192beb9e4d572a092cd)
26+
27+
28+
#### Bug fixes
29+
* Fixed re-arranging mean in MultiTask MO models (#450).
30+
31+
#### Other changes
32+
* Move gpt_posterior_settings into models.utils (#449)
33+
* Allow specifications of batch dims to collapse in samplers (#457)
34+
* Remove outcome transform before model-fitting for sequential model fitting
35+
in MO models (#458)
36+
37+
638
## [0.2.5] - May 14, 2020
739

840
Bugfix Release

botorch/__init__.py

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

2525

26-
__version__ = "0.2.5"
26+
__version__ = "0.3.0"
2727

2828

2929
__all__ = [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
long_description=long_description,
6767
long_description_content_type="text/markdown",
6868
python_requires=">=3.7",
69-
install_requires=["torch>=1.4", "gpytorch>=1.1.1", "scipy"],
69+
install_requires=["torch>=1.5", "gpytorch>=1.1.1", "scipy"],
7070
packages=find_packages(),
7171
extras_require={
7272
"dev": DEV_REQUIRES,

0 commit comments

Comments
 (0)