Meuron
A modular rust written library for training simple Neuronal Networks.
Features
- Modular layer system
- Multiple activation functions (ReLU, Sigmoid, Softmax)
- Multiple cost functions (MSE, CrossEntropy, BinaryCrossEntropy)
- Easy to extend with custom layers and activations
Quick Start
Add to your Cargo.toml:
[]
= "0.1"
Basic Example
use ;
use Array2;
Available Components
Activations
- ReLU
- Sigmoid
- Softmax
- Tanh
Cost Functions
- MSE
- CrossEntropy
- BinaryCrossEntropy
Layers
- DenseLayer
Examples
See the examples/ directory:
cargo run --example mnist --release
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.