From d8885526adec15c77671c93966160100af5e9f3f Mon Sep 17 00:00:00 2001 From: Elizabeth Santorella Date: Fri, 12 Aug 2022 14:11:08 -0700 Subject: [PATCH] Release notes for Botorch 0.6.6 (#1348) Summary: ## Motivation Self-explanatory ### Have you read the [Contributing Guidelines on pull requests](https://github.com/pytorch/botorch/blob/main/CONTRIBUTING.md#pull-requests)? Yes Pull Request resolved: https://github.com/pytorch/botorch/pull/1348 Reviewed By: saitcakmak Differential Revision: D38670793 Pulled By: esantorella fbshipit-source-id: e354630d05451af0e584c6f2573b4f9d1a1d5804 --- CHANGELOG.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0ff456f6f..5355d9f963 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,31 @@ The release log for BoTorch. +## [0.6.6] - Aug 12, 2022 + +#### Compatibility +* Require GPyTorch >= 1.8.1 (#1347). + +#### New Features +* Support batched models in `RandomFourierFeatures` (#1336). +* Add a `skip_expand` option to `AppendFeatures` (#1344). + +#### Other Changes +* Allow `qProbabilityOfImprovement` to use batch-shaped `best_f` (#1324). +* Make `optimize_acqf` re-attempt failed optimization runs and handle optimization +errors in `optimize_acqf` and `gen_candidates_scipy` better (#1325). +* Reduce memory overhead in `MARS.set_baseline_Y` (#1346). + +#### Bug Fixes +* Fix bug where `outcome_transform` was ignored for `ModelListGP.fantasize` (#1338). +* Fix bug causing `get_polytope_samples` to sample incorrectly when variables +live in multiple dimensions (#1341). + +#### Documentation +* Add more descriptive docstrings for models (#1327, #1328, #1329, #1330) and for other +classes (#1313). +* Expanded on the model documentation at [botorch.org/docs/models](https://botorch.org/docs/models) (#1337). + ## [0.6.5] - Jul 15, 2022 #### Compatibility