About 73,400 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. Backpropagation in Neural Network - GeeksforGeeks

    Oct 6, 2025 · 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.

  3. 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 …

  4. 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 …

  5. Backpropagation Step by Step - datamapu.com

    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 …

  6. Backpropagation Explained | Ultralytics

    Backpropagation, short for "backward propagation of errors," is the fundamental algorithm used to train artificial neural networks effectively. It acts as the mathematical engine that allows a machine …

  7. 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 …

  8. A Comprehensive Guide to the Backpropagation Algorithm in

    Jul 22, 2025 · Learn about backpropagation, its mechanics, coding in Python, types, limitations, and alternative approaches.

  9. Neural networks and deep learning

    In this chapter I'll explain a fast algorithm for computing such gradients, an algorithm known as backpropagation. The backpropagation algorithm was originally introduced in the 1970s, but its …

  10. How Does Backpropagation in a Neural Network Work?

    Oct 23, 2024 · Backpropagation is a process involved in training a neural network. It takes the error rate of a forward propagation and feeds this loss backward through the neural network layers to fine-tune …