1.The shape of the mask [111330] at index 0does not match the shape of the indexed tensor [104652, 80] at index 0
解决方案:
nn.Conv2d(self.out_c, self.out_c, kernel_size=3, stride=1, groups=groups, bias=False),
改为(加上padding,应该是大小不匹配的原因)
nn.Conv2d(self.out_c, self.out_c, kernel_size=3, padding=1, stride=1, groups=groups, bias=False),