We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
GoogLeNet does not run on imagenet training example. Since googlenet model have multiple (logits etc) outputs.
To reproduce, do following instruction on Google Colab ''' !wget https://s3.amazonaws.com/fast-ai-imageclas/imagenette-320.tgz !tar xzf imagenette-320.tgz` !git clone http://github.com/pytorch/examples !pip uninstall -y torchvision !git clone http://github.com/pytorch/vision !cd vision;python setup.py install !python examples/imagenet/main.py -a googlenet -j 2 -b 64 --epochs 10 imagenette-320/ '''
See following discussion https://discuss.pytorch.org/t/question-about-googlenet/44896
The text was updated successfully, but these errors were encountered:
Fix googlenet
344480a
GoogLeNet model outputs 3 arguments. This fix takes first tensor (logits). Pull Request resuolved: pytorch#559
We stopped supporting googlenet since it's behavior is funky
Sorry, something went wrong.
Hi msaroufim - sorry to revive an ancient thread. Is googlenet not supported only on ROCm, or not supported on CUDA as well?
No branches or pull requests
GoogLeNet does not run on imagenet training example.
Since googlenet model have multiple (logits etc) outputs.
To reproduce, do following instruction on Google Colab
'''
!wget https://s3.amazonaws.com/fast-ai-imageclas/imagenette-320.tgz
!tar xzf imagenette-320.tgz`
!git clone http://github.com/pytorch/examples
!pip uninstall -y torchvision
!git clone http://github.com/pytorch/vision
!cd vision;python setup.py install
!python examples/imagenet/main.py -a googlenet -j 2 -b 64 --epochs 10 imagenette-320/
'''
See following discussion
https://discuss.pytorch.org/t/question-about-googlenet/44896
The text was updated successfully, but these errors were encountered: