rusty-machine 0.5.4

A machine learning library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![feature(test)]

extern crate rusty_machine;
extern crate test;
extern crate rand;

mod examples {
    mod cross_validation;
    mod k_means;
    mod nnet;
    mod svm;
}