Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
priyakasimbeg committed Dec 5, 2023
1 parent 71f08ee commit b419962
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def __init__(self,
self.up_conv.append(
nn.Sequential(
ConvBlock(ch * 2, ch, dropout_rate, use_tanh, use_layer_norm),
nn.Conv2d(ch, out_chans=1, kernel_size=1, stride=1),
nn.Conv2d(ch, 1, kernel_size=1, stride=1),
))

for m in self.modules():
Expand Down

0 comments on commit b419962

Please sign in to comment.