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