Skip to content

Commit 60d2030

Browse files
committed
Removing trailing whitespace as suggested by lintrunner
1 parent 13150d0 commit 60d2030

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

beginner_source/examples_autograd/polynomial_autograd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
# Now loss is a Tensor of shape (1,)
5050
# loss.item() gets the scalar value held in the loss.
5151
loss = (y_pred - y).pow(2).sum()
52-
52+
5353
# Calculare initial loss, so we can report loss relative to it
5454
if t==0:
5555
initial_loss=loss.item()

0 commit comments

Comments
 (0)