-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpcaGrid_train.sh
executable file
·15 lines (10 loc) · 1.47 KB
/
pcaGrid_train.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
set -e
python train.py -d /home/research/vladan/data/NWPU-RESISC45 --batch-size 100 --algorithm PCAGrid --output-type single --single-clusters 2 --double-clusters 4 --initializer he_uniform
python train.py -d /home/research/vladan/data/NWPU-RESISC45 --batch-size 100 --algorithm PCAGrid --output-type double --single-clusters 2 --double-clusters 4 --initializer he_uniform
python train.py -d /home/research/vladan/data/NWPU-RESISC45 --batch-size 100 --algorithm PCAGrid --output-type single --single-clusters 8 --double-clusters 16 --initializer he_uniform
python train.py -d /home/research/vladan/data/NWPU-RESISC45 --batch-size 100 --algorithm PCAGrid --output-type double --single-clusters 8 --double-clusters 16 --initializer he_uniform
python train.py -d /home/research/vladan/data/NWPU-RESISC45 --batch-size 100 --algorithm PCAGrid --output-type single --single-clusters 32 --double-clusters 64 --initializer he_uniform
python train.py -d /home/research/vladan/data/NWPU-RESISC45 --batch-size 100 --algorithm PCAGrid --output-type double --single-clusters 32 --double-clusters 64 --initializer he_uniform
python train.py -d /home/research/vladan/data/NWPU-RESISC45 --batch-size 100 --algorithm PCAGrid --output-type single --single-clusters 128 --double-clusters 256 --initializer he_uniform
python train.py -d /home/research/vladan/data/NWPU-RESISC45 --batch-size 100 --algorithm PCAGrid --output-type double --single-clusters 128 --double-clusters 256 --initializer he_uniform