forked from thuml/Transfer-Learning-Library
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherm.sh
22 lines (17 loc) · 846 Bytes
/
erm.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Source Only
# GTA5 to Cityscapes
CUDA_VISIBLE_DEVICES=0 python erm.py data/GTA5 data/Cityscapes \
-s GTA5 -t Cityscapes --log logs/erm/gtav2cityscapes
# Synthia to Cityscapes
CUDA_VISIBLE_DEVICES=0 python erm.py data/synthia data/Cityscapes \
-s Synthia -t Cityscapes --log logs/erm/synthia2cityscapes
# Cityscapes to FoggyCityscapes
CUDA_VISIBLE_DEVICES=0 python erm.py data/Cityscapes data/Cityscapes \
-s Cityscapes -t FoggyCityscapes --log logs/erm/cityscapes2foggy
# Oracle
# Oracle Results on Cityscapes
CUDA_VISIBLE_DEVICES=0 python erm.py data/Cityscapes data/Cityscapes \
-s Cityscapes -t Cityscapes --log logs/oracle/cityscapes
# Oracle Results on Foggy Cityscapes
CUDA_VISIBLE_DEVICES=0 python erm.py data/Cityscapes data/Cityscapes \
-s FoggyCityscapes -t FoggyCityscapes --log logs/oracle/foggy_cityscapes