Files
foxhunt/ml/src/regime/mod.rs
jgrusewski bdf5b690b7 cleanup(ml): remove 31 disabled imports and commented-out module blocks
Removes dead code across 28 files:
- 31 commented-out "DISABLED" import lines (mostly safe_operations, error_handling)
- Commented-out module declarations in lib.rs (deployment, model_loader_integration, tests)
- Commented-out re-exports in lib.rs (training_pipeline, deployment::ModelVersion)
- Commented-out adaptive strategy modules in regime/mod.rs

All are in git history if ever needed. Net -74 lines removed.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-20 18:23:41 +01:00

26 lines
777 B
Rust

//! Regime Detection Module
//!
//! This module provides structural break detection and regime classification:
//! - CUSUM-based changepoint detection (mean, variance, multivariate)
//! - Bayesian online changepoint detection
//! - Regime classifiers (trending, ranging, volatile)
//! - Adaptive strategy components (position sizing, dynamic stops)
//! - Performance tracking per regime
// Wave D: Structural Breaks Detection (Agents D1-D4)
pub mod bayesian_changepoint;
pub mod cusum;
pub mod multi_cusum;
pub mod pages_test;
// Wave D: Regime Classification (Agents D5-D8)
pub mod orchestrator;
pub mod ranging;
pub mod transition_matrix;
pub mod trending;
pub mod volatile;
// Wave D: Transition Probability Features (Agent D15)
pub mod transition_probability_features;