-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrain_classifier_specified.sh
22 lines (19 loc) · 1.97 KB
/
train_classifier_specified.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
python train_classifier.py --which_data resampled_sample --transfer_learn 0 --freeze_backbone 0 --crop_normalize 1
python train_classifier.py --which_data resampled_sample --transfer_learn 1 --freeze_backbone 0 --crop_normalize 1
python train_classifier.py --which_data resampled_sample --transfer_learn 1 --freeze_backbone 1 --crop_normalize 1
python train_classifier.py --which_data sim_output --transfer_learn 0 --freeze_backbone 0 --crop_normalize 1
python train_classifier.py --which_data sim_output --transfer_learn 1 --freeze_backbone 0 --crop_normalize 1
python train_classifier.py --which_data sim_output --transfer_learn 1 --freeze_backbone 1 --crop_normalize 1
python train_classifier.py --which_data bench_image --transfer_learn 0 --freeze_backbone 0 --crop_normalize 1
python train_classifier.py --which_data bench_image --transfer_learn 1 --freeze_backbone 0 --crop_normalize 1
python train_classifier.py --which_data bench_image --transfer_learn 1 --freeze_backbone 1 --crop_normalize 1
python train_classifier.py --which_data resampled_sample --transfer_learn 0 --freeze_backbone 0 --crop_normalize 0
python train_classifier.py --which_data resampled_sample --transfer_learn 1 --freeze_backbone 0 --crop_normalize 0
python train_classifier.py --which_data resampled_sample --transfer_learn 1 --freeze_backbone 1 --crop_normalize 0
python train_classifier.py --which_data sim_output --transfer_learn 0 --freeze_backbone 0 --crop_normalize 0
python train_classifier.py --which_data sim_output --transfer_learn 1 --freeze_backbone 0 --crop_normalize 0
python train_classifier.py --which_data sim_output --transfer_learn 1 --freeze_backbone 1 --crop_normalize 0
python train_classifier.py --which_data bench_image --transfer_learn 0 --freeze_backbone 0 --crop_normalize 0
python train_classifier.py --which_data bench_image --transfer_learn 1 --freeze_backbone 0 --crop_normalize 0
python train_classifier.py --which_data bench_image --transfer_learn 1 --freeze_backbone 1 --crop_normalize 0