-
Notifications
You must be signed in to change notification settings - Fork 133
Closed
Labels
type: bugSomething isn't workingSomething isn't working
Description
There's an option to make the UNet use circular convolutions and even though it's set here
deepinv/deepinv/models/unet.py
Line 110 in 7116f70
| padding_mode="circular" if circular_padding else "zeros", |
deepinv/deepinv/models/unet.py
Line 137 in 7116f70
| padding_mode="circular" if circular_padding else "zeros", |
it's not set there (meaning it defaults to zero-padding)
deepinv/deepinv/models/unet.py
Line 119 in 7116f70
| ch_out, ch_out, kernel_size=3, stride=1, padding=1, bias=bias |
deepinv/deepinv/models/unet.py
Line 141 in 7116f70
| ch_out, ch_out, kernel_size=3, stride=1, padding=1, bias=bias |
deepinv/deepinv/models/unet.py
Line 151 in 7116f70
| ch_in, ch_out, kernel_size=3, stride=1, padding=1, bias=bias |
deepinv/deepinv/models/unet.py
Line 164 in 7116f70
| ch_in, ch_out, kernel_size=3, stride=1, padding=1, bias=bias |
Andrewwango
Metadata
Metadata
Assignees
Labels
type: bugSomething isn't workingSomething isn't working