1
2
3
4
5
6
7
8
//! A machine learning library for Rust.
#![warn(missing_docs)]
mod dataset;
mod net;
mod utils;

pub use dataset::*;
pub use net::*;