Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2d44031

Browse files
9bowchsasank
authored andcommitted
fixed a typo (#240)
1 parent e665e9b commit 2d44031

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

beginner_source/former_torchies/autograd_tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
1515
In autograd, if any input ``Tensor`` of an operation has ``requires_grad=True``,
1616
the computation will be tracked. After computing the backward pass, a gradient
17-
w.r.t. this variable is accumulated into ``.grad`` attribute.
17+
w.r.t. this tensor is accumulated into ``.grad`` attribute.
1818
1919
There’s one more class which is very important for autograd
2020
implementation - a ``Function``. ``Tensor`` and ``Function`` are

0 commit comments

Comments
 (0)