Neural Network from Scratch
Reimplementing a neural network from scratch in Python to build a hands-on understanding of backpropagation and training dynamics.
A learning exercise reimplementing a neural network from scratch in Python — no deep learning frameworks. The goal was to build intuition for forward and backward passes, gradient computation, and the mechanics of training by doing it step by step.