Skip to main content

entrenar/monitor/inference/path/
mod.rs

1//! Decision Path Types (ENT-102)
2//!
3//! Model-specific decision paths for explainability.
4//!
5//! GH-305: Types now live in `aprender::explainable::path` (source of truth).
6//! This module re-exports them for backwards compatibility.
7
8// Re-export all public types from aprender (source of truth)
9pub use aprender::explainable::path::{
10    DecisionPath, ForestPath, KNNPath, LeafInfo, LinearPath, NeuralPath, PathError, TreePath,
11    TreeSplit,
12};