Skip to content

Commit fca4d99

Browse files
authored
Fix typo in comment about activations
Fix typo in comment about activations.
1 parent 637bf93 commit fca4d99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

beginner_source/basics/buildmodel_tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def forward(self, x):
131131
# learn a wide variety of phenomena.
132132
#
133133
# 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.
134+
# linear layers, but there are other activations to introduce non-linearity in your model.
135135

136136
print(f"Before ReLU: {hidden1}\n\n")
137137
hidden1 = nn.ReLU()(hidden1)

0 commit comments

Comments
 (0)