Skip to content

Commit 6e4b89a

Browse files
committed
data readded to gitignore and ssdvars comment made more clear
1 parent 9346ff1 commit 6e4b89a

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Makefile.config
5858
# Data and models are either
5959
# 1. reference, and not casually committed
6060
# 2. custom, and live on their own unless they're deliberated contributed
61-
#data/*
61+
data/*
6262
models/*
6363
*.caffemodel
6464
*.caffemodel.h5

examples/ssd/ssdvars.sh

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
#!/usr/bin/env bash
22
export CAFFE_ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"/../..
33
export PYTHONPATH=$CAFFE_ROOT/"python"
4-
# WHERE OU WISH TO STORE THE IMAGE DATASET AND LMDB AND SCORING RESULTS
5-
export DATAPATH="/home/sfraczek/disk/sfraczek/ssd"
4+
5+
# datapath is where you wish to store generated lmdb
6+
# also in $DATAPATH/data directory you should have unpacked i
7+
# VOCdevkit and/or coco directories. see more in ./data/coco/README.md
8+
# this variable is used in create_list and create_data scripts only.
9+
export DATAPATH=""
10+
611
echo CAFFE_ROOT is $CAFFE_ROOT
712
echo PYTHONPATH is $PYTHONPATH
8-
echo DATAPATH is $DATAPATH
13+
echo DATAPATH is $DATAPATH

0 commit comments

Comments
 (0)