a | b/tools/data/activitynet/download_annotations.sh | ||
---|---|---|---|
1 | DATA_DIR="../../../data/ActivityNet/" |
||
2 | |||
3 | if [[ ! -d "${DATA_DIR}" ]]; then |
||
4 | echo "${DATA_DIR} does not exist. Creating"; |
||
5 | mkdir -p ${DATA_DIR} |
||
6 | fi |
||
7 | |||
8 | cd ${DATA_DIR} |
||
9 | |||
10 | wget http://ec2-52-25-205-214.us-west-2.compute.amazonaws.com/files/activity_net.v1-3.min.json |
||
11 | |||
12 | cd - |