-
Notifications
You must be signed in to change notification settings - Fork 7.1k
Pretrained VGG models #28
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
Comments
Yes, I'll train them this week or grab some weights from another framework. |
I've converted Karen Simonyan's VGG-16 and VGG-19 models here: https://github.com/jcjohnson/pytorch-vgg The converted models are available here: VGG-16: https://s3-us-west-2.amazonaws.com/jcjohns-models/vgg16-00b39a1b.pth VGG-19: https://s3-us-west-2.amazonaws.com/jcjohns-models/vgg19-d01eb7cb.pth These are exact conversions of Karen's Caffe checkpoints, so they expect BGR images in the range [0, 255] with the BGR value [103.939, 116.779, 123.68] subtracted from each pixel; I suspect that this is different from the pretrained AlexNet and ResNets in the model zoo. Feel free to add them to the model zoo if you want, but it would be convenient if all pretrained models used the same preprocessing. |
nice. sam is training new ones (he finally got them to start converging on friday) and he wants to commit newly trained ones into the zoo. |
@soumith Having the official model zoo consist of things trained from scratch seems like a good policy. I was mostly just impatient and wanted to use VGG networks this weekend. |
Any idea when we can expect pre-trained models for VGG? |
I trained VGG, but got below state of the art results (I think due to the weight initialization). I'll try changing the weight initialization and retraining. |
follow up : when can we expect VGG16 pretrained model in PyTorch model zoo ? Thanks |
in a few more days, probably a week. @colesbury is training them again. |
Pre-trained VGG models are now available in master |
Is there any plan for pretrained VGG models, especially VGG16 or VGG19? These are needed for style transfer; AlexNet and ResNets tend not to work as well in my experience.
The text was updated successfully, but these errors were encountered: