How This Tool Works
This visualizer demystifies the core mechanics of deep learning by making the abstract process of neural network training tangible. Instead of just seeing an accuracy score, you watch the entire lifecycle of learning.
When you initiate a training run (e.g., on XOR data), three key processes unfold in real time:
- Forward Pass: Input data flows through the hidden layers, calculating an initial prediction. You can observe how each neuron weights its connection to the next layer.
- Error Calculation: The model’s prediction is compared to the true label, generating a quantifiable error signal (loss).
- Backpropagation: This crucial step sends the error backward through the network. You will see every weight and bias adjust itself mathematically to minimize future errors, refining the decision boundary step by step.
It’s a live look at how data shapes knowledge.