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

Skip to content

Commit c325b2a

Browse files
committed
fixed small but potentially confusing typo "the a" --> "the"
1 parent 15a7ddf commit c325b2a

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)