Crates.io | linfa-trees |
lib.rs | linfa-trees |
version | 0.7.0 |
source | src |
created_at | 2020-11-29 17:06:19.05144 |
updated_at | 2023-10-16 04:53:26.177832 |
description | A collection of tree-based algorithms |
homepage | |
repository | https://github.com/rust-ml/linfa |
max_upload_size | |
id | 317846 |
size | 113,409 |
linfa-trees
provides methods for decision tree learning algorithms.
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.
linfa-trees
currently provides an implementation of single tree fitting
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:
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.