scry-learn 0.1.0

Machine learning toolkit in pure Rust
Documentation
1
2
3
4
5
6
7
8
// SPDX-License-Identifier: MIT OR Apache-2.0
//! Model explainability: permutation importance and TreeSHAP.

mod permutation;
mod tree_shap;

pub use permutation::{permutation_importance, PermutationImportance};
pub use tree_shap::{ensemble_tree_shap, tree_shap};