About 26,000 results
Open links in new tab
  1. Backpropagation - Wikipedia

    In machine learning, backpropagation is a gradient computation method commonly used for training a neural network in computing parameter updates. It is an efficient application of the chain rule to …

  2. 14 Backpropagation – Foundations of Computer Vision

    This is the whole trick of backpropagation: rather than computing each layer’s gradients independently, observe that they share many of the same terms, so we might as well calculate each shared term …

  3. Backpropagation in Neural Network - GeeksforGeeks

    Feb 9, 2026 · Backpropagation, short for Backward Propagation of Errors, is a key algorithm used to train neural networks by minimizing the difference between predicted and actual outputs.

  4. Backpropagation An algorithm for computing the gradient of a compound function as a series of local, intermediate gradients

  5. What is backpropagation? - IBM

    Backpropagation is a machine learning technique essential to the optimization of artificial neural networks. It facilitates the use of gradient descent algorithms to update network weights, which is …

  6. Backpropagation Algorithm: How It Works, Why It Matters, and …

    Learn how the backpropagation algorithm trains neural networks, why it remains essential for deep learning, and where it applies in practice.

  7. Backpropagation Step by Step |

    Mar 31, 2024 · In this post, we discuss how backpropagation works, and explain it in detail for three simple examples. The first two examples will contain all the calculations, for the last one we will only …

  8. Understanding Backpropagation - Towards Data Science

    Jan 12, 2021 · Backpropagation identifies which pathways are more influential in the final answer and allows us to strengthen or weaken connections to arrive at a desired prediction. It is such a …

  9. Understanding Backpropagation in Deep Learning

    May 30, 2025 · Backpropagation, often referred to as “backward propagation of errors,” is the cornerstone of training deep neural networks. It is a supervised learning algorithm that optimizes the …

  10. A Step by Step Backpropagation Example - Matt Mazur

    Mar 17, 2015 · There is no shortage of papers online that attempt to explain how backpropagation works, but few that include an example with actual numbers. This post is my attempt to explain how it …