Skip to content

Commit

Permalink
Use input_shape in AVA.decode
Browse files Browse the repository at this point in the history
  • Loading branch information
NickleDave committed Nov 22, 2023
1 parent 7e73ae3 commit e4e8570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vak/nets/ava.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def decode(self, z):
"""
"""
z = self.decoder_fc(z).view(-1, *self.fc_view)
z = self.decoder(z).view(-1, *self.x_shape)
z = self.decoder(z).view(-1, *self.input_shape)
return z

@staticmethod
Expand Down

0 comments on commit e4e8570

Please sign in to comment.