feat: add SuccessiveHalvingPruner for SHA-based trial pruning

This commit is contained in:
Manuel Raimann
2026-02-11 16:47:57 +01:00
parent a522fb2f34
commit 41150057d6
3 changed files with 471 additions and 2 deletions
+2
View File
@@ -8,12 +8,14 @@ mod median;
mod nop;
mod patient;
pub(crate) mod percentile;
mod successive_halving;
mod threshold;
pub use median::MedianPruner;
pub use nop::NopPruner;
pub use patient::PatientPruner;
pub use percentile::PercentilePruner;
pub use successive_halving::SuccessiveHalvingPruner;
pub use threshold::ThresholdPruner;
use crate::sampler::CompletedTrial;