Skip to content

Instantly share code, notes, and snippets.

@ProGamerGov
Last active September 15, 2019 16:57
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ProGamerGov/ccf80be4b63f62dd6cf60db0b5c7ddbf to your computer and use it in GitHub Desktop.
Save ProGamerGov/ccf80be4b63f62dd6cf60db0b5c7ddbf to your computer and use it in GitHub Desktop.
#https://github.com/jcjohnson/neural-style/wiki/Using-Other-Neural-Models
#All of the alternate models are easily downloaded by pasting this into the terminal/command prompt.
cd ~
cd neural-style
cd models
#NIN-Imagenet by ImageNet project
wget https://www.dropbox.com/s/cphemjekve3d80n/nin_imagenet.caffemodel
wget https://www.dropbox.com/s/faj8t135bh1i45t/train_val.prototxt
#Illustration2vec model by the Illustration2Vec team
wget http://illustration2vec.net/models/illust2vec.prototxt
wget http://illustration2vec.net/models/illust2vec_ver200.caffemodel
#VGG-ILSVRC-16 also known as VGG-16 by VGG team
wget http://www.robots.ox.ac.uk/~vgg/software/very_deep/caffe/VGG_ILSVRC_16_layers.caffemodel
wget http://www.robots.ox.ac.uk/~vgg/software/very_deep/caffe/VGG_ILSVRC_16_layers_deploy.prototxt
#CNN Object Proposal Models for Salient Object Detection by VGG16_SOD_finetune team
wget http://www.cs.bu.edu/groups/ivc/Subitizing/model/VGG16/VGG16_SOD_finetune.caffemodel
wget http://www.cs.bu.edu/groups/ivc/Subitizing/model/VGG16/deploy.prototxt -O VGG16_SOD_finetune_deploy.prototxt
#VGG-16 Places365 by MIT
wget http://places2.csail.mit.edu/models_places365/vgg16_places365.caffemodel
wget http://places2.csail.mit.edu/models_places365/deploy_vgg16_places365.prototxt
#VGG16 Hybrid1365 by MIT
wget http://places2.csail.mit.edu/models_places365/vgg16_hybrid1365.caffemodel
wget http://places2.csail.mit.edu/models_places365/deploy_vgg16_hybrid1365.prototxt
#PASCAL VOC FCN-32s by University of California, Berkeley
wget http://dl.caffe.berkeleyvision.org/fcn32s-heavy-pascal.caffemodel
wget https://github.com/shelhamer/fcn.berkeleyvision.org/blob/master/voc-fcn32s/train.prototxt -O fcn32s-heavy-pascal_train.prototxt
#DeepLab V1 Pre-Trained Model by DeepLab
wget http://ccvl.stat.ucla.edu/ccvl/DeepLab/model.caffemodel -O DeepLab_V1.caffemodel
wget http://ccvl.stat.ucla.edu/ccvl/DeepLab/train.prototxt -O DeepLab_V1_train.prototxt
wget http://ccvl.stat.ucla.edu/ccvl/DeepLab/train_trainval_aug.prototxt -O DeepLab_V1_train_trainval_aug.prototxt
cd ~
cd neural-style
@mavenlin
Copy link

mavenlin commented Sep 15, 2019

I thought these models are no longer used so I deleted them, but recently received an email requiring me to restore them.

NIN model is now with the link
https://www.dropbox.com/s/cphemjekve3d80n/nin_imagenet.caffemodel?dl=0
https://www.dropbox.com/s/faj8t135bh1i45t/train_val.prototxt?dl=0

Sorry for the inconvenience.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment