cnnks 0.1.1

Libraries to generate and manage a multilple layers Convolutional Neural Network.
Documentation
1
2
3
4
5

// Triggering behaviour
pub fn sigmoid(x: f64) -> f64 {
    1.0 / (1.0 + (-x).exp())
}