diff --git a/beginner_source/blitz/autograd_tutorial.py b/beginner_source/blitz/autograd_tutorial.py index b736b429eee..d4d0f96816e 100644 --- a/beginner_source/blitz/autograd_tutorial.py +++ b/beginner_source/blitz/autograd_tutorial.py @@ -67,7 +67,7 @@ loss.backward() # backward pass ############################################################ -# Next, we load an optimizer, in this case SGD with a learning rate of 0.01 and `momentum `__ of 0.9. +# Next, we load an optimizer, in this case SGD with a learning rate of 0.01 and `momentum `__ of 0.9. # We register all the parameters of the model in the optimizer. #