diff --git a/beginner_source/basics/buildmodel_tutorial.py b/beginner_source/basics/buildmodel_tutorial.py index 1806e80feb..2fb28d6e30 100644 --- a/beginner_source/basics/buildmodel_tutorial.py +++ b/beginner_source/basics/buildmodel_tutorial.py @@ -131,7 +131,7 @@ def forward(self, x): # learn a wide variety of phenomena. # # In this model, we use `nn.ReLU `_ between our -# linear layers, but there's other activations to introduce non-linearity in your model. +# linear layers, but there are other activations to introduce non-linearity in your model. print(f"Before ReLU: {hidden1}\n\n") hidden1 = nn.ReLU()(hidden1)