linfa-trees

Crates.iolinfa-trees
lib.rslinfa-trees
version0.7.0
sourcesrc
created_at2020-11-29 17:06:19.05144
updated_at2023-10-16 04:53:26.177832
descriptionA collection of tree-based algorithms
homepage
repositoryhttps://github.com/rust-ml/linfa
max_upload_size
id317846
size113,409
wg (github:rust-ml:wg)

documentation

README

Decision tree learning

linfa-trees provides methods for decision tree learning algorithms.

The Big Picture

linfa-trees is a crate in the linfa ecosystem, an effort to create a toolkit for classical Machine Learning implemented in pure Rust, akin to Python's scikit-learn.

Decision Trees (DTs) are a non-parametric supervised learning method used for classification and regression. The goal is to create a model that predicts the value of a target variable by learning simple decision rules inferred from the data features.

Current state

linfa-trees currently provides an implementation of single tree fitting

Examples

There is an example in the examples/ directory showing how to use decision trees. To run, use:

$ cargo run --release --example decision_tree

This generates the following tree:

License

Dual-licensed to be compatible with the Rust project.

Licensed under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 or the MIT license http://opensource.org/licenses/MIT, at your option. This file may not be copied, modified, or distributed except according to those terms.

Commit count: 313

cargo fmt