stamm 0.2.0

A library for implementing custom decision trees and random forests
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate rand;
#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate rayon;

pub mod tree;
pub mod randforest;

pub mod numerictree;