[6d389a]: / tools / data / hmdb51 / download_annotations.sh

Download this file

23 lines (15 with data), 471 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env bash
set -e
DATA_DIR="../../../data/hmdb51/annotations"
if [[ ! -d "${DATA_DIR}" ]]; then
echo "${DATA_DIR} does not exist. Creating";
mkdir -p ${DATA_DIR}
fi
cd ${DATA_DIR}
wget http://serre-lab.clps.brown.edu/wp-content/uploads/2013/10/test_train_splits.rar --no-check-certificate
# sudo apt-get install unrar
unrar x test_train_splits.rar
rm test_train_splits.rar
mv testTrainMulti_7030_splits/*.txt ./
rmdir testTrainMulti_7030_splits
cd -