Skip to content

Commit

Permalink
[FIX] print statement in baseline model
Browse files Browse the repository at this point in the history
  • Loading branch information
BenCretois committed Feb 20, 2024
1 parent aafd3db commit 70cb5da
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Models/baseline.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ def __init__(self):
def forward(self,x):
(num_samples,seq_len,mel_bins) = x.shape
x = x.view(-1,1,seq_len,mel_bins)
print(x.shape)
x = self.encoder(x)
x = nn.MaxPool2d(2)(x)

Expand Down

0 comments on commit 70cb5da

Please sign in to comment.