-
Notifications
You must be signed in to change notification settings - Fork 151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
some question about resnet-12 #35
Comments
Hi, The numbers of channels in our ResNet-12 are 64, 128, 256, and 512 respectively. meta-transfer-learning/tensorflow/models/resnet12.py Lines 177 to 180 in 6e22127
In PyTorch version, we use ResNet-25 instead of ResNet-12, following FEAT. We'll provide a ResNet-12 PyTorch implementation later. If you hope to implement ResNet-12 yourself, you may follow MetaOptNet and DeepEMD. |
Hi I have another question. In resnet's paper, the first conv layer's kernel size is 7. However in your torch code, the first conv layer's kernel size is 3. What's more, I also found some code which use resnet and they set first conv layer's kernel size is 3 or even delete this layer . Could you tell me what's the reason you change it? |
For the backbone in the PyTorch implementation, we follow FEAT. That means, we're using exactly the same hyperparameters (e.g., kernel size) as FEAT's implementation. You may directly refer to their paper for details: Supplementary Material C, Implementation Details. |
Hi I have some questions about resnet-12 . I have found some models which also use resnet-12 to extract feature. However,I found that your's and other's resnet-12 are not exactly same. For example, the layers's channel in your resnet is 160,320,640. But others may follows the resnet setting. 128,256,512. Could you tell me why you design like this? I tried to search some information about resnet-12 on the Internet. But i can't found. Could you give me some information about resnet-12 ? Thank you!
The text was updated successfully, but these errors were encountered: