Skip to main content

entrenar/monitor/inference/counterfactual/
mod.rs

1//! Counterfactual Explanations (ENT-104)
2//!
3//! "What would have changed the decision?"
4
5mod error;
6mod explanation;
7mod feature_change;
8
9#[cfg(test)]
10mod tests;
11
12pub use error::CounterfactualError;
13pub use explanation::Counterfactual;
14pub use feature_change::FeatureChange;