micrograd_rs/
lib.rs

1mod value;
2pub use crate::value::Value;
3
4mod neuron;
5pub use crate::neuron::Neuron;
6
7mod layer;
8pub use crate::layer::Layer;
9
10mod mlp;
11pub use crate::mlp::MLP;