BIGBALLON / CIFAR-ZOO

PyTorch implementation of CNNs for CIFAR benchmark

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

senet improvement

Ageliss opened this issue · comments

line 180 of senet.py:
x = F.avg_pool2d(x, 8, 1)

will be better fitting all image sizes if changed to
x = F.avg_pool2d(x, x.size(3), 1)

@Ageliss that's right, would you mind create a merge request? 😸

@Ageliss that's right, would you mind create a merge request? 😸

Sure, here u go.