Skip to content

Commit 1bd3758

Browse files
authored
fix typo
1 parent 0fa794b commit 1bd3758

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

video_notebooks/01_pytorch_workflow_video.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@
816816
" loss.backward()\n",
817817
"\n",
818818
" # 5. Step the optimizer (perform gradient descent)\n",
819-
" optimizer.step() # by default how the optimizer changes will acculumate through the loop so... we have to zero them above in step 3 for the next iteration of the loop\n",
819+
" optimizer.step() # by default how the optimizer changes will accumulate through the loop so... we have to zero them above in step 3 for the next iteration of the loop\n",
820820
"\n",
821821
" ### Testing\n",
822822
" model_0.eval() # turns off different settings in the model not needed for evaluation/testing (dropout/batch norm layers)\n",
@@ -2297,4 +2297,4 @@
22972297
"outputs": []
22982298
}
22992299
]
2300-
}
2300+
}

0 commit comments

Comments
 (0)