diff --git a/CHANGELOG.md b/CHANGELOG.md index f82116476..2969cf922 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,7 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Search spaces are now stateless, preventing unintended side effects that could lead to incorrect candidate sets when reused in different optimization contexts - `qNIPV` not working with single `MIN` targets -- Passing a `TargetTransformation` without passing `bounds` when createing a +- Passing a `TargetTransformation` without passing `bounds` when creating a `NumericalTarget` now raises an error - Crash when using `ContinuousCardinalityConstraint` caused by an unintended interplay between constraints and dropped parameters yielding empty parameter sets diff --git a/examples/Basics/recommenders.py b/examples/Basics/recommenders.py index 324654e1c..2653863e7 100644 --- a/examples/Basics/recommenders.py +++ b/examples/Basics/recommenders.py @@ -84,9 +84,9 @@ # - If a larger value is chosen, only those that allow batching. # That is, 'q'-variants of the acquisition functions must be chosen. -# The default he acquisition function is q-Expected Improvement. +# The default acquisition function is q-Log Expected Improvement. -ACQ_FUNCTION = "qEI" +ACQ_FUNCTION = "qLogEI" ### Other parameters