Skip to content

Commit 836eecc

Browse files
Balandatfacebook-github-bot
authored andcommitted
Version 0.1.3 (#228)
Summary: Add changelog and bump version to 0.1.3. Pull Request resolved: #228 Test Plan: ran local tests Reviewed By: sdaulton Differential Revision: D16754050 Pulled By: Balandat fbshipit-source-id: 1bc7811b5e15146fe9b4cd88e031fc49211b35ad
1 parent a107ff9 commit 836eecc

File tree

6 files changed

+36
-5
lines changed

6 files changed

+36
-5
lines changed

.conda/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ requirements:
1616
- python>=3.6
1717
run:
1818
- pytorch>=1.2
19-
- gpytorch>=0.3.4
19+
- gpytorch>=0.3.5
2020
- scipy
2121

2222
test:

CHANGELOG.md

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

55

6+
## [0.1.3] - Aug 9, 2019
7+
8+
Compatibility & maintenance release
9+
10+
#### Compatibility
11+
* Updates to support breaking changes in PyTorch to boolean masks and tensor
12+
comparisons (#224).
13+
* Require PyTorch >=1.2 (#225).
14+
* Require GPyTorch >=0.3.5 (itself a compatibility release).
15+
16+
#### New Features
17+
* Add `FixedFeatureAcquisitionFunction` wrapper that simplifies optimizing
18+
acquisition functions over a subset of input features (#219).
19+
* Add `ScalarizedObjective` for scalarizing posteriors (#210).
20+
* Change default optimization behavior to use L-BFGS-B by for box constraints
21+
(#207).
22+
23+
#### Bug fixes
24+
* Add validation to candidate generation (#213), making sure constraints are
25+
strictly satisfied (rater than just up to numerical accuracy of the optimizer).
26+
27+
#### Minor changes
28+
* Introduce `AcquisitionObjective` base class (#220).
29+
* Add propagate_grads context manager, replacing the `propagate_grads` kwarg in
30+
model `posterior()` calls (#221)
31+
* Add `batch_initial_conditions` argument to `joint_optimize()` for
32+
warm-starting the optimization (ec3365a37ed02319e0d2bb9bea03aee89b7d9caa).
33+
* Add `return_best_only` argument to `joint_optimize()` (#216). Useful for
34+
implementing advanced warm-starting procedures.
35+
36+
637
## [0.1.2] - July 9, 2019
738

839
Maintenance release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Optimization simply use Ax.
5151
**Installation Requirements**
5252
- Python >= 3.6
5353
- PyTorch >= 1.2
54-
- gpytorch >= 0.3.4
54+
- gpytorch >= 0.3.5
5555
- scipy
5656

5757

botorch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from .utils import manual_seed
1818

1919

20-
__version__ = "0.1.2"
20+
__version__ = "0.1.3"
2121

2222

2323
__all__ = [

docs/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Before jumping the gun, we recommend you start with the high-level
1515

1616
- Python >= 3.6
1717
- PyTorch >= 1.2
18-
- gpytorch >= 0.3.4
18+
- gpytorch >= 0.3.5
1919
- scipy
2020

2121
BoTorch is easily installed via

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
long_description=long_description,
6565
long_description_content_type="text/markdown",
6666
python_requires=">=3.6",
67-
install_requires=["torch>=1.2", "gpytorch>=0.3.4", "scipy"],
67+
install_requires=["torch>=1.2", "gpytorch>=0.3.5", "scipy"],
6868
packages=find_packages(),
6969
extras_require={
7070
"dev": DEV_REQUIRES,

0 commit comments

Comments
 (0)