HobbitLong/RepDistiller

resnet structure seems to be a bit wrong

surprisedong opened this issue · 3 comments

resnet use 7x7conv and maxpool In the beginning,but this rep uses 3x3 conv and no maxpool,is there any reason for doing this?

the inputsize of cifar100 is too small to use 7X7 conv, i got it

is there any similar modify in other model structure?

@surprisedong If you review section 4.2 of the original ResNet paper (https://arxiv.org/pdf/1512.03385.pdf), you will see that for CIFAR the authors note all the alterations to the standard architecture that they use.