rustyml 0.13.0

A high-performance machine learning & deep learning library in pure Rust, offering ML algorithms and neural network support
Documentation
1
2
3
4
5
6
7
8
9
10
//! Decision tree models
//!
//! Groups the [`DecisionTree`] estimator (ID3, C4.5, and CART) with its node types
//! ([`Node`], [`NodeType`]), the [`Algorithm`] selector, and the [`DecisionTreeParams`]
//! hyperparameters

/// Decision tree for classification and regression
pub mod decision_tree;

pub use decision_tree::{Algorithm, DecisionTree, DecisionTreeParams, Node, NodeType};