diff --git a/CHANGELOG.md b/CHANGELOG.md index cd3a5e3a8..cfe8f33b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.11.2] - 2024-10-11 ### Added - `n_restarts` and `n_raw_samples` keywords to configure continuous optimization behavior for `BotorchRecommender` diff --git a/docs/userguide/utils.md b/docs/userguide/utils.md index 3d421b0a3..917960cd5 100644 --- a/docs/userguide/utils.md +++ b/docs/userguide/utils.md @@ -64,7 +64,8 @@ generally depends on additional factors. ```{admonition} Influence of Continuous Parameters :class: info -Continuous parameters do not influence the size of the discrete search space part. +Continuous parameters do not influence the size of the discrete search space part as +they do not contribute to the combinatorial configurations like discrete parameters. Hence, they are ignored by the utility. ``` @@ -101,7 +102,8 @@ campaign.recommend(5) ``` Setting the global random seed can be undesirable if there are other packages in your -setup. For this, BayBE offers [`temporary_seed`](baybe.utils.random.temporary_seed): +setup that might unintentionally be influenced by this. For this, BayBE offers +[`temporary_seed`](baybe.utils.random.temporary_seed): ```python from baybe.utils.random import temporary_seed