Closed Sword-keeper closed 4 years ago
We follow the ResNet-12 of MetaOptNet and ResNet-18 of SimpleShot (results with ResNet-18 are not reported in the paper).
The main reason is that the images used in FSL experiments are small images (84x84), so we should remove some downsampling operations and do not need a large kernel size.
Hi that's really a nice code! However, i have a question about resnet. In the resnet paper, resnet's first conv layer's kernel size is 7. But in your code , I found the first conv kernel size is 3. I also found other codes which use resnet-12 or 18. They also set the kernel size is 3.
What's more, I read the TADAM's paper which design the resnet-12(maybe not). It just use blocks, didn't add conv layer before the blocks. Could you tell me why you change conv kernel size ? Thank you !