forester 0.0.3

A crate for implementing various flavors of random forests and decision trees.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
extern crate num_traits;
extern crate rand;

pub mod api;
pub mod array_ops;
pub mod categorical;
pub mod continuous;
pub mod criterion;
pub mod data;
pub mod dforest;
pub mod dtree;
pub mod iter_mean;
pub mod split;
pub mod split_between;
pub mod vec2d;

mod testdata;