Skip to content

Commit

Permalink
fix missing bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
pesekon2 committed Aug 28, 2023
1 parent a434628 commit df03fc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/architectures.py
Original file line number Diff line number Diff line change
Expand Up @@ -1204,7 +1204,7 @@ def instantiate_layers(self):
'integers.')
self.level5_classifier_layers.append(
ConvBlock((self.nr_filters * (2 ** 4), ),
((level5_tensor_shape, level5_tensor_shape, ),
((level5_tensor_shape, level5_tensor_shape, ), ),
(self.activation, ), (self.padding, ),
self.dilation_rate,
dropout_rate=self.dropout_rate_hidden,
Expand Down

0 comments on commit df03fc8

Please sign in to comment.