a | b/tools/data/ucf101/download_annotations.sh | ||
---|---|---|---|
1 | #!/usr/bin/env bash |
||
2 | |||
3 | DATA_DIR="../../../data/ucf101/annotations" |
||
4 | |||
5 | if [[ ! -d "${DATA_DIR}" ]]; then |
||
6 | echo "${DATA_DIR} does not exist. Creating"; |
||
7 | mkdir -p ${DATA_DIR} |
||
8 | fi |
||
9 | |||
10 | wget https://www.crcv.ucf.edu/wp-content/uploads/2019/03/UCF101TrainTestSplits-RecognitionTask.zip --no-check-certificate |
||
11 | |||
12 | unzip -j UCF101TrainTestSplits-RecognitionTask.zip -d ${DATA_DIR}/ |
||
13 | rm UCF101TrainTestSplits-RecognitionTask.zip |