Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
priyakasimbeg committed Dec 7, 2023
1 parent 5a24308 commit 879cd2d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def __init__(self,
super().__init__()
if use_layer_norm:
size = int(size)
norm_layer = nn.GroupNorm(num_groups=1, num_channels=out_chans, eps=1e-6)
norm_layer = partial(nn.GroupNorm, 1, eps=1e-6)
else:
norm_layer = nn.InstanceNorm2d
if use_tanh:
Expand All @@ -183,7 +183,6 @@ def __init__(self,
self.layers = nn.Sequential(
nn.ConvTranspose2d(
in_chans, out_chans, kernel_size=2, stride=2, bias=False),
nn.GroupNorm(num_groups=1, num_channels=out_chans, eps=1e-6),
norm_layer(out_chans),
activation_fn,
)
Expand Down

0 comments on commit 879cd2d

Please sign in to comment.