neurons-0.1.2 has been yanked.
Visit the last successful build:
neurons-2.6.2
Modular neural networks in Rust.
Create modular neural networks in Rust with ease! For educational purposes; vector operations are not throughly optimized.
Quickstart
use Shape;
use Feedforward;
use Activation;
use Optimizer;
use Objective;
Examples can be found in the examples directory.
Progress
-
Layer types
- Dense
- Convolutional
- Forward pass
- Padding
- Stride
- Dilation
- Backward pass
- Padding
- Stride
- Dilation
- Forward pass
- Feedback
-
Activation functions
- Linear
- Sigmoid
- Tanh
- ReLU
- LeakyReLU
- Softmax
-
Objective functions
- AE
- MAE
- MSE
- RMSE
- CrossEntropy
- BinaryCrossEntropy
- KLDivergence
-
Optimization techniques
- SGD
- SGDM
- Adam
- AdamW
- RMSprop
- Minibatch
-
Architecture
- Feedforward
- Convolutional
- Recurrent
- Feedback
-
Regularization
- Dropout
- Batch normalization
- Early stopping
-
Parallelization
- Multi-threading
-
Testing
- Unit tests
- Thorough testing of activation functions
- Thorough testing of objective functions
- Thorough testing of optimization techniques
- Integration tests
- Unit tests
-
Other
- Documentation
- Custom random weight initialization
- Custom tensor type
- Plotting
- Data from file
- General data loading functionality
- Custom icon/image for documentation
- Type conversion (e.g. f32, f64)
- Network type specification (e.g. f32, f64)
- Saving and loading
- Logging