From 33b5d6d144160e66a11c434e809e340f8ae57ceb Mon Sep 17 00:00:00 2001 From: Yashwanth Date: Wed, 4 Jun 2025 12:58:45 +0530 Subject: [PATCH] Update autograd_tutorial.py Updated link to momentum article on TDS --- beginner_source/blitz/autograd_tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. #