-
Notifications
You must be signed in to change notification settings - Fork 85
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
About the pre-trained model #33
Comments
The AttentionNet-IRSE pretrained model is not avaiable. And I saved the model use |
OK,thanks! Can the models from Model Zoo.md not be finetuning? Such as IR-SE50 etc. |
The models from Model Zoo.md is saved using api |
You can load the weights from torch.jit.load and set these in to the state_dict of a real model (from BACKBONE_DICT) in order to support finetuning. |
Oh, that's great. Can you provide the pre-trained model of AttentionNet-IRSE-56/92 so that I can fine-tune it? Thank you @cavalleria @xsacha |
@bobo0810 mymodel = AttentionNet_IRSE_92()
mymodel.load_state_dict(torch.jit.load('AttentionNet_IRSE_92_torchscript.pt').state_dict()) |
@cavalleria hello,according to data augmentation result in model_zoo.md,baseline is the best, so we do not need to do any data augmentation? |
When trained for the same amount of time, from scratch, baseline is better. This will be the case for any sort of classifier AFAIK. Augmentation requires either a fine-tune on a baseline (pre-trained) or much longer training to see optimal results. |
@FelixZhang7 Although model.md is like this, my experimental experience is that adding data augmentation will improve performance. |
@xsacha @cavalleria @bobo0810 Hello, I want to find a network with a better accuracy than resnet50-IR, and it is better to have similar inference speed,could you give me some advice ? |
@FelixZhang7 AttNet-56-IR |
I haven't compared the speed of the networks yet. Refer to modelzoo.md, I am using attention_irse. |
@bobo0810 efficient-b1/mobilenetv3(enlarge width) and so on. |
@xsacha I‘ve tried AttNet-56-IR,almost the same acc compare with resnet50-IR... |
Thank you for this work. I want to use the pre-trained model of AttentionNet-IRSE-56/92 from the MODEL_ZOO.md for fine-tuning. Where can I get the pre-trained model?
The text was updated successfully, but these errors were encountered: