feat: add BOHB sampler for budget-aware Bayesian optimization

BOHB combines TPE's model-guided sampling with Hyperband's budget-aware
evaluation by conditioning the TPE model on trials at specific budget
levels, producing better-calibrated parameter proposals.
This commit is contained in:
Manuel Raimann
2026-02-11 18:42:09 +01:00
parent a1dd6d393c
commit aa9734587a
4 changed files with 826 additions and 0 deletions
+1
View File
@@ -1,5 +1,6 @@
//! Sampler trait and implementations for parameter sampling.
pub mod bohb;
#[cfg(feature = "cma-es")]
pub mod cma_es;
pub mod grid;