Skip to content

Commit

Permalink
Bugfix - Models.dfl_h128
Browse files Browse the repository at this point in the history
  • Loading branch information
torzdf committed Aug 18, 2020
1 parent f897562 commit 9c5568f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/train/model/dfl_h128.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def encoder(self):
var_x = Dense(8 * 8 * self.encoder_dim)(var_x)
var_x = Reshape((8, 8, self.encoder_dim))(var_x)
var_x = UpscaleBlock(self.encoder_dim)(var_x)
return KerasModel(input_, var_x)
return KerasModel(input_, var_x, name=self.name)

def decoder(self, side):
""" DFL H128 Decoder """
Expand Down

0 comments on commit 9c5568f

Please sign in to comment.