Skip to content

Commit

Permalink
Corrected forward operations order and norm layer parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
hongbozheng authored Jul 10, 2024
1 parent b604142 commit 2cb0ac0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GANDLF/models/seg_modules/DownsamplingModule.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(
if act_kwargs is None:
act_kwargs = {"negative_slope": 1e-2, "inplace": True}

self.in_0 = norm(output_channels, **norm_kwargs)
self.in_0 = norm(input_channels, **norm_kwargs)

self.conv0 = conv(input_channels, output_channels, **conv_kwargs)

Expand Down

0 comments on commit 2cb0ac0

Please sign in to comment.