alex
alex
Hello! I found a following thing in LeakyReLUConv2d: ``` class LeakyReLUConv2d(nn.Module): def __init__(self, ..., norm='None', ...): .... if 'norm' == 'Instance': model += [nn.InstanceNorm2d(n_out, affine=False)] ... ``` _https://github.com/HsinYingLee/MDMM/blob/master/networks.py#L362_ It seems...
Hello! I found a following thing in LeakyReLUConv2d: ``` class LeakyReLUConv2d(nn.Module): def __init__(self, ..., norm='None', ...): .... if 'norm' == 'Instance': model += [nn.InstanceNorm2d(n_out, affine=False)] ... ``` _https://github.com/hytseng0509/DRIT_hr/blob/master/networks.py#L496_ It seems...