learntk 0.3.0

A simple machine learning toolkit, written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Main library for the LearnTK machine learning package.

mod linalg;
mod neural;

pub use linalg::{
    Sigmoid,
    ReLU,
    Softmax,
    Vector,
};

pub use neural::{
    TrainingDataset,
    Network,
};