Fixed imports

This commit is contained in:
Christian Risi
2025-10-11 11:18:44 +02:00
parent 92ae40013d
commit 625f79f7c3
7 changed files with 14 additions and 8 deletions

View File

@@ -35,7 +35,7 @@ class FeedForwardNetwork(nn.Module):
x = self.__relu(x)
# 3) Dropout
x = self.__dropout(x)
# x = self.__dropout(x)
# 4) Linear Layer
x = self.__fully_connected_2(x)