Skip to content

Commit

Permalink
🧗
Browse files Browse the repository at this point in the history
  • Loading branch information
johndpope committed Aug 11, 2024
1 parent e94e53c commit 45de120
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified __pycache__/resblock.cpython-311.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion model.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def __init__(self, initial_channels=64, output_channels=[128, 256, 512, 512,512,
self.res_blocks = nn.ModuleList()
in_channels = initial_channels
for out_channels in output_channels:
self.res_blocks.append(ResBlock(in_channels, out_channels, downsample=True))
self.res_blocks.append(ResBlock(in_channels, out_channels))
in_channels = out_channels

self.equalconv = EqualConv2d(output_channels[-1], output_channels[-1], kernel_size=3, stride=1, padding=1)
Expand Down

0 comments on commit 45de120

Please sign in to comment.