Skip to content

Commit

Permalink
remove flatten
Browse files Browse the repository at this point in the history
  • Loading branch information
namsaraeva committed May 17, 2024
1 parent 56260ac commit dd23edf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sparcscore/ml/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def forward(self, x):
x = self.features(x)
print("x.shape after features", x.shape)

x = torch.flatten(x, 1)
#x = torch.flatten(x, 1)
print("x.shape after flatten", x.shape)

x = self.classifier(x)
Expand Down

0 comments on commit dd23edf

Please sign in to comment.