About 71,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. 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. 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. 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.

  5. Backpropagation | Brilliant Math & Science Wiki

    Backpropagation, short for "backward propagation of errors," is an algorithm for supervised learning of artificial neural networks using gradient descent. Given an artificial neural network and an error …

  6. 7.2 Backpropagation - Principles of Data Science | OpenStax

    Backpropagation is a supervised learning algorithm, meaning that it trains on data that has already been classified (see What Is Machine Learning? for more about supervised learning in general).

  7. What is backpropagation really doing? - 3Blue1Brown

    Nov 3, 2017 · Here we tackle backpropagation, the core algorithm behind how neural networks learn. If you followed the last two lessons or if you’re jumping in with the appropriate background, you know …

  8. What Is Backpropagation Neural Network? - Coursera

    Jun 17, 2025 · How does backpropagation work? Backpropagation in a neural network helps reduce errors and improve outcomes, resulting in more reliable machine responses. It's a process of …

  9. A Comprehensive Guide to the Backpropagation Algorithm in

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

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