jiro_nn 0.8.1

Neural Networks framework with model building & data preprocessing features.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Initializers for convolutional layers
pub mod conv_initializers;
/// Convolutional layers and abstractions (Average Pooling, Dense, Direct...)
pub mod conv_layer;
/// Convolutional network abstractions
pub mod conv_network;
/// Optimizers for convolutional layers
pub mod conv_optimizer;
/// Backends for image manipulation (convolutions, channels...)
pub mod image;
/// Activation functions for convolutional layers
pub mod conv_activation;
/// Abstraction of a layer taking an image as input and outputting an image
pub mod image_layer;