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

Skip to content

Commit 196cc74

Browse files
authored
Merge pull request #527 from jpgard/master
fixed small but potentially confusing typo "the a" --> "the"
2 parents 38e6ef6 + be788b8 commit 196cc74

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

beginner_source/examples_autograd/two_layer_net_autograd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
# Compute and print loss using operations on Tensors.
4848
# Now loss is a Tensor of shape (1,)
49-
# loss.item() gets the a scalar value held in the loss.
49+
# loss.item() gets the scalar value held in the loss.
5050
loss = (y_pred - y).pow(2).sum()
5151
print(t, loss.item())
5252

0 commit comments

Comments
 (0)