-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbaseline_train.sh
81 lines (74 loc) · 1.72 KB
/
baseline_train.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
python3 PIN_aug.py \
--dataset cityscapes \
--data_root /workspace/cityscapes \
--total_it 100 \
--resize_feat \
--target_domain_desc "Driving at night" \
--save_dir result_night \
--batch_size 40
python3 PIN_aug.py \
--dataset cityscapes \
--data_root /workspace/cityscapes \
--total_it 100 \
--resize_feat \
--target_domain_desc "Driving in snow" \
--save_dir result_snow \
--batch_size 40
python3 PIN_aug.py \
--dataset cityscapes \
--data_root /workspace/cityscapes \
--total_it 100 \
--resize_feat \
--target_domain_desc "Driving under rain" \
--save_dir result_rain \
--batch_size 40
python3 PIN_aug.py \
--dataset cityscapes \
--data_root /workspace/cityscapes \
--total_it 100 \
--resize_feat \
--target_domain_desc "Driving in fog" \
--save_dir result_fog \
--batch_size 40
python3 main.py \
--dataset cityscapes \
--data_root /workspace/cityscapes \
--ckpt checkpoint/CS_source.pth \
--batch_size 30 \
--lr 0.01 \
--ckpts_path adapted_night \
--freeze_BB \
--train_aug \
--total_itrs 2000 --path_mu_sig result_night
python3 main.py \
--dataset cityscapes \
--data_root /workspace/cityscapes \
--ckpt checkpoint/CS_source.pth \
--batch_size 30 \
--lr 0.01 \
--ckpts_path adapted_snow \
--freeze_BB \
--train_aug \
--total_itrs 2000 --path_mu_sig result_snow
python3 main.py \
--dataset cityscapes \
--data_root /workspace/cityscapes \
--ckpt checkpoint/CS_source.pth \
--batch_size 30 \
--lr 0.01 \
--ckpts_path adapted_rain \
--freeze_BB \
--train_aug \
--total_itrs 2000 \
--mix \
--path_mu_sig result_rain
python3 main.py \
--dataset cityscapes \
--data_root /workspace/cityscapes \
--ckpt checkpoint/CS_source.pth \
--batch_size 30 \
--lr 0.01 \
--ckpts_path adapted_fog \
--freeze_BB \
--train_aug \
--total_itrs 2000 --path_mu_sig result_fog