From 9bc795cfe42df4de27ab905f1acd0f1cbb5b1a7c Mon Sep 17 00:00:00 2001 From: Karin Hrovatin <47607471+Hrovatin@users.noreply.github.com> Date: Thu, 5 Dec 2024 12:31:42 +0100 Subject: [PATCH 1/3] Correct typo in docs on acquisition functions --- examples/Basics/recommenders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Basics/recommenders.py b/examples/Basics/recommenders.py index 324654e1c..6850ad84f 100644 --- a/examples/Basics/recommenders.py +++ b/examples/Basics/recommenders.py @@ -84,7 +84,7 @@ # - 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-Expected Improvement. ACQ_FUNCTION = "qEI" From 3b0944abe376f830e7d4cf219f3527180db78fff Mon Sep 17 00:00:00 2001 From: Karin Hrovatin <47607471+Hrovatin@users.noreply.github.com> Date: Wed, 11 Dec 2024 10:25:20 +0100 Subject: [PATCH 2/3] Change documentation to list default acquisition qLogEI --- examples/Basics/recommenders.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Basics/recommenders.py b/examples/Basics/recommenders.py index 6850ad84f..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 acquisition function is q-Expected Improvement. +# The default acquisition function is q-Log Expected Improvement. -ACQ_FUNCTION = "qEI" +ACQ_FUNCTION = "qLogEI" ### Other parameters From 91e3e92dfd7baee41eb0f8b003e89e1af4a511ae Mon Sep 17 00:00:00 2001 From: Karin Hrovatin <47607471+Hrovatin@users.noreply.github.com> Date: Wed, 11 Dec 2024 12:15:17 +0100 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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