rusty_science/regression/
mod.rs

1pub mod knn;
2pub mod tree;
3pub mod perceptron;
4
5pub use knn::*;
6pub use tree::*;
7pub use perceptron::*;