What is backpropagation?medium

Type
conceptual
Topic
backpropagation
Frequency
common
Tags
backpropagation
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?