tjpulkl

Results 2 issues of tjpulkl

I use the environment that the author suggested, but I can not reproduce the result. Have anyone done? I run the code three times, but every time the result is...

part of your code: m1 = nn.Sequential( nn.Conv2d(3, 3, 1, 1, bias=False), nn.BatchNorm2d(3), nn.ReLU(inplace=True), nn.Conv2d(3, 3, 1, 1, bias=False), nn.BatchNorm2d(3), ).cuda() torch.manual_seed(123) init_weight(m1) m2 = nn.Sequential( nn.Conv2d(3, 3, 1, 1,...