We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 637bf93 commit fca4d99Copy full SHA for fca4d99
beginner_source/basics/buildmodel_tutorial.py
@@ -131,7 +131,7 @@ def forward(self, x):
131
# learn a wide variety of phenomena.
132
#
133
# In this model, we use `nn.ReLU <https://pytorch.org/docs/stable/generated/torch.nn.ReLU.html>`_ between our
134
-# 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.
135
136
print(f"Before ReLU: {hidden1}\n\n")
137
hidden1 = nn.ReLU()(hidden1)
0 commit comments