ikhlestov / vision_networks

Repo about neural networks for images handling
MIT License
264 stars 122 forks source link

Why did you remove the max pooling layer after the initial convolution? #26

Closed Zhengyu-Li closed 6 years ago

Zhengyu-Li commented 6 years ago

I remember there is a 3*3 max pooling layer after the initial convolution. Why remove it?

ikhlestov commented 6 years ago

Hi! Max pooling layer is used after 7x7 convolution layer only for the ImageNet version. I've implemented cifar/svhn version, where initially only 3x3 convolution is used (link to the authors code).