Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions models/download_style_transfer_models.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ BASE_URL="http://cs.stanford.edu/people/jcjohns/fast-neural-style/models/"

mkdir -p models/instance_norm
cd models/instance_norm
curl -O "$BASE_URL/instance_norm/candy.t7"
curl -O "$BASE_URL/instance_norm/la_muse.t7"
curl -O "$BASE_URL/instance_norm/mosaic.t7"
curl -O "$BASE_URL/instance_norm/feathers.t7"
curl -O "$BASE_URL/instance_norm/the_scream.t7"
curl -O "$BASE_URL/instance_norm/udnie.t7"
curl -LO "$BASE_URL/instance_norm/candy.t7"
curl -LO "$BASE_URL/instance_norm/la_muse.t7"
curl -LO "$BASE_URL/instance_norm/mosaic.t7"
curl -LO "$BASE_URL/instance_norm/feathers.t7"
curl -LO "$BASE_URL/instance_norm/the_scream.t7"
curl -LO "$BASE_URL/instance_norm/udnie.t7"

mkdir -p ../eccv16
cd ../eccv16
curl -O "$BASE_URL/eccv16/the_wave.t7"
curl -O "$BASE_URL/eccv16/starry_night.t7"
curl -O "$BASE_URL/eccv16/la_muse.t7"
curl -O "$BASE_URL/eccv16/composition_vii.t7"
curl -LO "$BASE_URL/eccv16/the_wave.t7"
curl -LO "$BASE_URL/eccv16/starry_night.t7"
curl -LO "$BASE_URL/eccv16/la_muse.t7"
curl -LO "$BASE_URL/eccv16/composition_vii.t7"
cd ../../

2 changes: 1 addition & 1 deletion models/download_vgg16.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
cd models
curl -O "http://cs.stanford.edu/people/jcjohns/fast-neural-style/models/vgg16.t7"
curl -LO "http://cs.stanford.edu/people/jcjohns/fast-neural-style/models/vgg16.t7"
cd ../