-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpcaKmeans_extract.sh
executable file
·24 lines (16 loc) · 3.62 KB
/
pcaKmeans_extract.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
#python extract.py -d /home/research/vladan/data/AID --batch-size 100 --algorithm PCAKmeans --output-type double -w ./models/PCAKmeans_double_16_final.hdf5 -f ./features/PCAKmeans_features_double_16.npy --single-clusters 2 --double-clusters 16
#python extract.py -d /home/research/vladan/data/AID --batch-size 100 --algorithm PCAKmeans --output-type single -w ./models/PCAKmeans_single_8_final.hdf5 -f ./features/PCAKmeans_features_single_8.npy --single-clusters 8 --double-clusters 32
#python extract.py -d /home/research/vladan/data/AID --batch-size 100 --algorithm PCAKmeans --output-type double -w ./models/PCAKmeans_double_32_final.hdf5 -f ./features/PCAKmeans_features_double_32.npy --single-clusters 8 --double-clusters 32
#python extract.py -d /home/research/vladan/data/AID --batch-size 100 --algorithm PCAKmeans --output-type single -w ./models/PCAKmeans_single_16_final.hdf5 -f ./features/PCAKmeans_features_single_16.npy --single-clusters 16 --double-clusters 64
#python extract.py -d /home/research/vladan/data/AID --batch-size 100 --algorithm PCAKmeans --output-type double -w ./models/PCAKmeans_double_64_final.hdf5 -f ./features/PCAKmeans_features_double_64.npy --single-clusters 16 --double-clusters 64
#python extract.py -d /home/research/vladan/data/AID --batch-size 100 --algorithm PCAKmeans --output-type single -w ./models/PCAKmeans_single_32_final.hdf5 -f ./features/PCAKmeans_features_single_32.npy --single-clusters 32 --double-clusters 128
#python extract.py -d /home/research/vladan/data/AID --batch-size 100 --algorithm PCAKmeans --output-type double -w ./models/PCAKmeans_double_128_final.hdf5 -f ./features/PCAKmeans_features_double_128.npy --single-clusters 32 --double-clusters 128
#python extract.py -d /home/research/vladan/data/AID --batch-size 100 --algorithm PCAKmeans --output-type single -w ./models/PCAKmeans_single_64_final.hdf5 -f ./features/PCAKmeans_features_single_64.npy --single-clusters 64 --double-clusters 256
#python extract.py -d /home/research/vladan/data/AID --batch-size 100 --algorithm PCAKmeans --output-type double -w ./models/PCAKmeans_double_256_final.hdf5 -f ./features/PCAKmeans_features_double_256.npy --single-clusters 64 --double-clusters 256
#python extract.py -d /home/research/vladan/data/AID --batch-size 100 --algorithm PCAKmeans --output-type single -w ./models/PCAKmeans_single_128_final.hdf5 -f ./features/PCAKmeans_features_single_128.npy --single-clusters 128 --double-clusters 512
python extract.py -d /home/research/vladan/data/AID --batch-size 100 --algorithm PCAKmeans --output-type double -w ./models/PCAKmeans_double_512_final.hdf5 -f ./features/PCAKmeans_features_double_512.npy --single-clusters 128 --double-clusters 512
#python extract.py -d /home/research/vladan/data/AID --batch-size 100 --algorithm PCAKmeans --output-type single -w ./models/PCAKmeans_single_2_final.hdf5 -f ./features/PCAKmeans_features_single_2.npy --single-clusters 2 --double-clusters 2
#python extract.py -d /home/research/vladan/data/AID --batch-size 100 --algorithm PCAKmeans --output-type double -w ./models/PCAKmeans_double_2_final.hdf5 -f ./features/PCAKmeans_features_double_2.npy --single-clusters 2 --double-clusters 2
#python extract.py -d /home/research/vladan/data/AID --batch-size 100 --algorithm PCAKmeans --output-type single -w ./models/PCAKmeans_single_100_final.hdf5 -f ./features/PCAKmeans_features_single_100.npy --single-clusters 100 --double-clusters 313
#python extract.py -d /home/research/vladan/data/AID --batch-size 100 --algorithm PCAKmeans --output-type double -w ./models/PCAKmeans_double_313_final.hdf5 -f ./features/PCAKmeans_features_double_313.npy --single-clusters 100 --double-clusters 313