Rust rewrite of Andrej Karpathy's Python micrograd repo for self-study.
- Rust compiler
- Built and tested on
rustc 1.65.0
- Cargo crates
autograd.rs
contains a simple graph-like data structure of nodes calledParameter
snn.rs
contains definitions forNeuron
,Layer
andMLP
, building on top ofParameter
definitionsmath.rs
has util functionsmain.rs
has example training code forMLP
displaying that it works