diff --git a/CHANGELOG.md b/CHANGELOG.md index cae23a694..9ceffd498 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +# v0.9.0 - Mar 2026 + +### Major Changes ++ Add pipeline-based Compressor module for search space compression in high-dimensional BBO, + supporting dimension selection (SHAP / Correlation / Adaptive / Expert), range compression, + projection (REMBO / HesBO / KPCA), quantization, and filling strategies. ++ Add `SpaceAdapter` for flexible configuration space transformation. ++ Add `MFAdvisor` with unified multi-fidelity scheduler and batched suggestion support in SMBO. ++ Refactor `AcquisitionOptimizer` with modular SearchGenerator and StrategySelector abstractions. + +### Bug Fixes ++ Fix TL surrogate robustness for multi-fidelity data edge cases. + + + # v0.8.4 - Sep 9, 2024 ### Major Changes diff --git a/README.md b/README.md index b17b807b0..1f915281d 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,8 @@ ## OpenBox: Generalized and Efficient Blackbox Optimization System **OpenBox** is an efficient and generalized blackbox optimization (BBO) system, which supports the following characteristics: 1) **BBO with multiple objectives and constraints**, 2) **BBO with transfer learning**, 3) -**BBO with distributed parallelization**, 4) **BBO with multi-fidelity acceleration** and 5) **BBO with early stops**. +**BBO with distributed parallelization**, 4) **BBO with multi-fidelity acceleration**, 5) **BBO with early stops** +and 6) **BBO with search space compression**. OpenBox is designed and developed by the AutoML team from the [DAIR Lab](http://net.pku.edu.cn/~cuibin/) at Peking University, and its goal is to make blackbox optimization easier to apply both in industry and academia, and help facilitate data science. @@ -116,8 +117,19 @@ The design of OpenBox follows the following principles:
  • Interleaved RS and LS
  • Differential Evolution
  • L-BFGS-B
  • +
  • CMA-ES
  • +
  • Upper Bound Maximizer
  • + +