Skip to content

Commit

Permalink
syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
lim185 committed Dec 8, 2024
1 parent 91125c9 commit 0f17e2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model/autoencoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def call(self, x):
return self.decoder(x)

class Autoencoder(keras.Model):
def __init__(self, input_size=(130, 26):
def __init__(self, input_size=(130, 26)):
super(Autoencoder, self).__init__()
self.encoder = Encoder(input_size=input_size)
self.decoder = Decoder()
Expand Down

0 comments on commit 0f17e2d

Please sign in to comment.