We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a9b63b commit 01b89c9Copy full SHA for 01b89c9
beginner_source/blitz/neural_networks_tutorial.py
@@ -30,7 +30,7 @@
30
- Compute the loss (how far is the output from being correct)
31
- Propagate gradients back into the network’s parameters
32
- Update the weights of the network, typically using a simple update rule:
33
- ``weight = weight + learning_rate * gradient``
+ ``weight = weight - learning_rate * gradient``
34
35
Define the network
36
------------------
0 commit comments