The 1986 Rumelhart, Hinton & Williams paper that popularized backpropagation
Neural network training / connectionist AIIn the mid-1980s, multi-layer "connectionist" networks were known to be theoretically more powerful than single-layer perceptrons, but there was no efficient, general algorithm to train their hidden-layer weights — researchers lacked a practical way to assign credit/blame for errors to internal units several layers removed from the output.
Rumelhart, Hinton, and Williams described training multi-layer networks by propagating the output error backward through the layers using the chain rule, computing a local error term at each layer and using it to derive weight updates — efficiently reusing computation from the forward pass instead of perturbing each weight individually.
The paper ("Learning representations by back-propagating errors", Nature, 1986) showed hidden units could automatically learn useful internal representations (e.g. solving the XOR problem and learning symmetry-detection tasks) without those representations being hand-designed. It became the foundational training algorithm behind essentially all subsequent deep learning, turning what was previously an -forward-pass-per-weight numerical procedure into a single backward pass costing about the same as one forward pass — a complexity reduction that made training networks with thousands and later billions of weights practical.
Source: Learning representations by back-propagating errors — Rumelhart, D. E., Hinton, G. E., and Williams, R. J.