ResUnet icon indicating copy to clipboard operation
ResUnet copied to clipboard

This repo has almost 300 stars but does *NOT* have residual connections

Open MatthewBM opened this issue 1 year ago • 2 comments

Author wrote:

def forward(self, x):
    return self.conv_block(x) + self.conv_skip(x)

Which will function like a grouped convolution. A skip would be:

def forward(self, x):
    return self.conv_block(x) + x

MatthewBM avatar Mar 03 '23 22:03 MatthewBM