Skip to content

Commit

Permalink
updating a typo :-)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhi-11nav authored Jul 3, 2023
1 parent d06d2f1 commit 768f32d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beginner_source/introyt/trainingyt.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def forward(self, x):
x = x.view(-1, 16 * 4 * 4)
x = F.relu(self.fc1(x))
x = F.relu(self.fc2(x))
x = self.fc3(x)
x = F.softmax(self.fc3(x))
return x


Expand Down

0 comments on commit 768f32d

Please sign in to comment.