-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathexecute_script.sh
More file actions
executable file
·22 lines (15 loc) · 1011 Bytes
/
Copy pathexecute_script.sh
File metadata and controls
executable file
·22 lines (15 loc) · 1011 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
UCF_DIR="/Users/Bryan/CS/CS_Research/data/UCF101/"
TRAIN_LIST="/Users/Bryan/CS/CS_Research/data/class_attributes_UCF101/ucfTrainTestlist/trainlist01.txt"
GMM_OUT="/Users/Bryan/CS/CS_Research/code/CS221/UCF101_Fishers/gmm_list"
python gmm.py 120 $UCF_DIR $TRAIN_LIST $GMM_OUT --pca
trainlist01="/Users/Bryan/CS/CS_Research/data/class_attributes_UCF101/ucfTrainTestlist/trainlist01.txt"
testlist01="/Users/Bryan/CS/CS_Research/data/class_attributes_UCF101/ucfTrainTestlist/testlist01.txt"
training_output="/Users/Bryan/CS/CS_Research/code/CS221/UCF101_Fishers/train"
testing_output="/Users/Bryan/CS/CS_Research/code/CS221/UCF101_Fishers/test"
python computeFVs.py $UCF_DIR $trainlist01 $training_output $GMM_OUT
python computeFVs.py $UCF_DIR $testlist01 $testing_output $GMM_OUT
CLASS_INDEX="/Users/Bryan/CS/CS_Research/data/class_attributes_UCF101/Class_Index.txt"
CLASS_INDEX_OUT="./class_index"
python compute_UCF101_class_index.py $CLASS_INDEX $CLASS_INDEX_OUT
python classify_experiment.py