Simone Magistri
Results
1
issues of
Simone Magistri
I think that something is missed in the Resnet18 implementation: ``` class BasicBlock (nn.Module): expansion = 1 def __init__(self, in_planes, planes, stride=1, config={}): super(BasicBlock, self).__init__() self.conv1 = conv3x3(in_planes, planes, stride)...