Skip to main content

scry_learn/explain/
mod.rs

1// SPDX-License-Identifier: MIT OR Apache-2.0
2//! Model explainability: permutation importance and TreeSHAP.
3
4mod permutation;
5mod tree_shap;
6
7pub use permutation::{permutation_importance, PermutationImportance};
8pub use tree_shap::{ensemble_tree_shap, tree_shap};