feat: add HyperbandPruner for multi-bracket trial pruning

This commit is contained in:
Manuel Raimann
2026-02-11 16:52:59 +01:00
parent 41150057d6
commit a885d10436
3 changed files with 564 additions and 4 deletions
+2
View File
@@ -4,6 +4,7 @@
//! intermediate values compared to other trials. This is useful for
//! discarding unpromising trials before they complete, saving compute.
mod hyperband;
mod median;
mod nop;
mod patient;
@@ -11,6 +12,7 @@ pub(crate) mod percentile;
mod successive_halving;
mod threshold;
pub use hyperband::HyperbandPruner;
pub use median::MedianPruner;
pub use nop::NopPruner;
pub use patient::PatientPruner;