-
Notifications
You must be signed in to change notification settings - Fork 81
/
run_bash.sh
77 lines (60 loc) · 2.47 KB
/
run_bash.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
# Exp01, inference different conditions from a video
python run_net.py\
--cfg configs/exp01_vidcomposer_full.yaml\
--seed 9999\
--input_video "demo_video/blackswan.mp4"\
--input_text_desc "A black swan swam in the water"
# Exp02, Motion Transfer from a video to a Single Image
python run_net.py\
--cfg configs/exp02_motion_transfer.yaml\
--seed 9999\
--input_video "demo_video/motion_transfer.mp4"\
--image_path "demo_video/sunflower.png"\
--input_text_desc "A sunflower in a field of flowers"
python run_net.py\
--cfg configs/exp02_motion_transfer_vs_style.yaml\
--seed 9999\
--input_video "demo_video/motion_transfer.mp4"\
--image_path "demo_video/moon_on_water.jpg"\
--style_image "demo_video/moon_on_water.jpg"\
--input_text_desc "A beautiful big silver moon on the water"
python run_net.py\
--cfg configs/exp02_motion_transfer_vs_style.yaml\
--seed 888\
--input_video "demo_video/motion_transfer.mp4"\
--image_path "demo_video/style/fangao_01.jpeg"\
--style_image "demo_video/style/fangao_01.jpeg"\
--input_text_desc "Beneath Van Gogh's Starry Sky"
# Exp03, Single Sketch to videos with style
python run_net.py\
--cfg configs/exp03_sketch2video_style.yaml\
--seed 8888\
--sketch_path "demo_video/src_single_sketch.png"\
--style_image "demo_video/style/qibaishi_01.png"\
--input_text_desc "Red-backed Shrike lanius collurio"
# Exp04, Single Sketch to videos without style input
python run_net.py\
--cfg configs/exp04_sketch2video_wo_style.yaml\
--seed 144\
--sketch_path "demo_video/src_single_sketch.png"\
--input_text_desc "A little bird is standing on a branch"
# Exp05, Depth to video without style
python run_net.py\
--cfg configs/exp05_text_depths_wo_style.yaml\
--seed 9999\
--input_video demo_video/tennis.mp4\
--input_text_desc "Ironman is fighting against the enemy, big fire in the background, photorealistic"
# Exp06, Depth to video with style
python run_net.py\
--cfg configs/exp06_text_depths_vs_style.yaml\
--seed 9999\
--input_video demo_video/tennis.mp4\
--style_image "demo_video/style/fangao_01.jpeg"\
--input_text_desc "Van Gogh played tennis under the stars"
# Exp07, Depth to video without style
python run_net.py\
--cfg configs/exp07_text_image_wo_style.yaml\
--seed 9999\
--input_video demo_video/blackswan.mp4\
--input_text_desc "Van Gogh played tennis under the stars"
# If you want to , use CUDA_VISIBLE_DEVICES=0