rust_shap 0.1.0

A lightweight Rust implementation of Kernel SHAP
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// =====================================================================================
// lib.rs
//
// Crate entry point for Rust SHAP (Kernel SHAP implementation)
//
//
// =====================================================================================

pub mod kernel;
pub mod explanation;
pub mod masked_model;
pub mod common;

pub use kernel::kernel_shap;
pub use explanation::Explanation;
pub use masked_model::MaskedModel;