A Rust Beginner's implementation of Andrej karpathy's micrograd.
Here's Link to the YouTube video.
Also thanks to micrograd-rust for reference implementation in rust.
==============================================
- scalar valued autograd
- Implementation of forward and backward pass for arithmetic operations and power operation.
- Implementation of forward and backward pass for activation functions - tanh and relu.
===============================================
==========================================
- graph visulization using libraries like graphviz
- Implementation of Tensor type library from scratch
- Improve implementation of MLP, activations etc for Tensors.