-
Notifications
You must be signed in to change notification settings - Fork 7.1k
SqueezeNet 1.0 and 1.1 models #49
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
Conversation
I successfully trained SqueezeNet 1.0 on ImageNet with the following parameters: |
Awesome! Is the PR ready? |
There is SqueezeNet 1.1 to train as well |
Finished training both SqueezeNet 1.0 and 1.1. Trained for 100 epochs with
After @soumith uploads the models to AWS, I'll add |
Great! If you put them somewhere or send them to me, I can upload them to AWS too. |
finished uploading them:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Two minor things. Ready to merge after fixing them.
torchvision/models/squeezenet.py
Outdated
) | ||
self.classifier = nn.Sequential( | ||
nn.Dropout(p=0.5), | ||
self.final_conv, |
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
torchvision/models/squeezenet.py
Outdated
nn.AvgPool2d(13) | ||
) | ||
|
||
import math |
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
SqueezeNet 1.0 and 1.1 models. I'm still working on getting them converge on ImageNet, but as several people contacted me about SqueezeNet for PyTorch, I think its useful to share it publicly.