learntk/
lib.rs

1//! Main library for the LearnTK machine learning package.
2
3mod linalg;
4mod neural;
5
6pub use linalg::{
7    Sigmoid,
8    ReLU,
9    Softmax,
10    Vector,
11};
12
13pub use neural::{
14    TrainingDataset,
15    Network,
16};