Skip to content
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

Consistent directory for vgg-19 and train2014 data #1

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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
3 changes: 2 additions & 1 deletion setup.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
cd /output
mkdir training-data
cd training-data
curl -O http://www.vlfeat.org/matconvnet/models/beta16/imagenet-vgg-verydeep-19.mat
curl -O http://msvocds.blob.core.windows.net/coco2014/train2014.zip
unzip train2014.zip
4 changes: 2 additions & 2 deletions style.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
NUM_EPOCHS = 2
CHECKPOINT_DIR = 'checkpoints'
CHECKPOINT_ITERATIONS = 2000
VGG_PATH = '/input/imagenet-vgg-verydeep-19.mat'
TRAIN_PATH = '/input/train2014'
VGG_PATH = './training-data/imagenet-vgg-verydeep-19.mat'
TRAIN_PATH = './training-data/train2014'
BATCH_SIZE = 4
DEVICE = '/gpu:0'
FRAC_GPU = 1
Expand Down