-
Notifications
You must be signed in to change notification settings - Fork 171
/
Copy pathscript.sh
executable file
·37 lines (25 loc) · 1.38 KB
/
script.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
# Run a specific task by uncommenting corresponding line
# Run Facescrub
# python ./discogan/image_translation.py --task_name='facescrub' --batch_size=500
# Run CelebA (blond to black hair, only female)
#python ./discogan/image_translation.py --task_name='celebA' --style_A='Blond_Hair' --style_B='Black_Hair' --constraint='Male' --constraint_type='-1' --batch_size=500
# Run CelebA (male to female)
python ./discogan/image_translation.py --task_name='celebA' --style_A='Male' --batch_size=500
# Run Edges2Handbags
# python ./discogan/image_translation.py --task_name='edges2handbags' --batch_size=500
# Run Edges2Shoes
# python ./discogan/image_translation.py --task_name='edges2shoes' --batch_size=500
# Run Shoes2Handbags
# python ./discogan/image_translation.py --task_name='shoes2handbags' --starting_rate=0.5 --batch_size=500
# Run Handbags2Shoes
# python ./discogan/image_translation.py --task_name='handbags2shoes' --batch_size=500
# Run Car2Car
#python ./discogan/angle_pairing.py --task_name='car2car' --batch_size=500
# Run Face2Face
# python ./discogan/angle_pairing.py --task_name='face2face' --batch_size=500
# Run Chair2Car
# python ./discogan/angle_pairing.py --task_name='chair2car' --batch_size=500
# Run Chair2Face
# python ./discogan/angle_pairing.py --task_name='chair2face' --batch_size=500
# Run Car2Face
# python ./discogan/angle_pairing.py --task_name='car2face' --batch_size=500