SENet-PyTorch icon indicating copy to clipboard operation
SENet-PyTorch copied to clipboard

Results 10 SENet-PyTorch issues
Sort by recently updated
recently updated
newest added

Does this version support pytorch0.4.0?

hello, i wanna try my custom datasets which has 21classes (20+1) ,but i finlly find that output Tensor is a logical value , why no SOFTMAX ?

What should I do to deal with 448*448 pictures with se_resnet50?

Hi, Before seethe original paper, I have saw the channel-wise in 'SCA-CNN', I think the two structures are vary similar, could you tell me the difference between them? Thank you...

hello ,Do you have se-renext151 pre training parameters?

I just recode and change: self.conv1 = conv3x3(inplanes, planes * 2, stride) self.bn1 = nn.BatchNorm2d(planes * 2) self.conv2 = conv3x3(planes * 2, planes * 2) self.bn2 = nn.BatchNorm2d(planes * 2)...

In the code, the global average pooling in the SE structure is implemented through average pooling, but the output size is not like 1X1XC in the paper. Is there a...