feat: add WilcoxonPruner for statistics-based trial pruning

This commit is contained in:
Manuel Raimann
2026-02-11 16:59:05 +01:00
parent a885d10436
commit 12c35e7cb4
3 changed files with 533 additions and 1 deletions
+2
View File
@@ -11,6 +11,7 @@ mod patient;
pub(crate) mod percentile;
mod successive_halving;
mod threshold;
mod wilcoxon;
pub use hyperband::HyperbandPruner;
pub use median::MedianPruner;
@@ -19,6 +20,7 @@ pub use patient::PatientPruner;
pub use percentile::PercentilePruner;
pub use successive_halving::SuccessiveHalvingPruner;
pub use threshold::ThresholdPruner;
pub use wilcoxon::WilcoxonPruner;
use crate::sampler::CompletedTrial;