-
Notifications
You must be signed in to change notification settings - Fork 6
/
run_office_uda_ab.sh
15 lines (14 loc) · 1.72 KB
/
run_office_uda_ab.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
### se
python image_source.py --trte val --output ckps/source/ --da uda --gpu_id 0 --dset office --max_epoch 100 --s 0 --net resnet50 --se Ture ;
python image_target.py --cls_par 0.3 --da uda --dset office --gpu_id 0 --s 0 --output_src ckps/source/ --output ckps/target/ --se Ture --net resnet50;
python image_source.py --trte val --output ckps/source/ --da uda --gpu_id 0 --dset office --max_epoch 100 --s 1 --net resnet50 --se Ture;
python image_target.py --cls_par 0.3 --da uda --dset office --gpu_id 0 --s 1 --output_src ckps/source/ --output ckps/target/ --net resnet50 --se Ture;
python image_source.py --trte val --output ckps/source/ --da uda --gpu_id 0 --dset office --max_epoch 100 --s 2 --net resnet50 --se Ture ;
python image_target.py --cls_par 0.3 --da uda --dset office --gpu_id 0 --s 2 --output_src ckps/source/ --output ckps/target/ --net resnet50 --se Ture;
### nonlocal
#python image_source.py --trte val --output ckps/source/ --da uda --gpu_id 0 --dset office --max_epoch 100 --s 0 --net resnet50 --nl Ture;
#python image_target.py --cls_par 0.3 --da uda --dset office --gpu_id 0 --s 0 --output_src ckps/source/ --output ckps/target/ --net resnet50 --nl Ture;
#python image_source.py --trte val --output ckps/source/ --da uda --gpu_id 0 --dset office --max_epoch 100 --s 1 --net resnet50 --nl Ture;
#python image_target.py --cls_par 0.3 --da uda --dset office --gpu_id 0 --s 1 --output_src ckps/source/ --output ckps/target/ --net resnet50 --nl Ture;
#python image_source.py --trte val --output ckps/source/ --da uda --gpu_id 0 --dset office --max_epoch 100 --s 2 --net resnet50 --nl Ture;
#python image_target.py --cls_par 0.3 --da uda --dset office --gpu_id 0 --s 2 --output_src ckps/source/ --output ckps/target/ --net resnet50 --nl Ture;