What is backpropagation?medium
Answer
It computes gradients layer by layer so neural networks can learn.
Explanation
Backpropagation applies the chain rule to calculate how each weight contributed to loss, then an optimizer updates weights.
Follow-upHow does backpropagation relate to gradient descent?