run_wan_t2v_dist.sh 1.48 KB
Newer Older
helloyongyang's avatar
update  
helloyongyang committed
1
#!/bin/bash
Xinchi Huang's avatar
Xinchi Huang committed
2

3
# set path and first
helloyongyang's avatar
helloyongyang committed
4
5
lightx2v_path=
model_path=
6
7
8

# check section
if [ -z "${CUDA_VISIBLE_DEVICES}" ]; then
9
    cuda_devices=1,2,3,4
Dongz's avatar
Dongz committed
10
    echo "Warn: CUDA_VISIBLE_DEVICES is not set, using default value: ${cuda_devices}, change at shell script or set env variable."
11
12
13
14
15
16
17
    export CUDA_VISIBLE_DEVICES=${cuda_devices}
fi

if [ -z "${lightx2v_path}" ]; then
    echo "Error: lightx2v_path is not set. Please set this variable first."
    exit 1
fi
Xinchi Huang's avatar
Xinchi Huang committed
18

19
20
21
22
if [ -z "${model_path}" ]; then
    echo "Error: model_path is not set. Please set this variable first."
    exit 1
fi
helloyongyang's avatar
update  
helloyongyang committed
23

24
25
export TOKENIZERS_PARALLELISM=false

26
export PYTHONPATH=${lightx2v_path}:$PYTHONPATH
helloyongyang's avatar
update  
helloyongyang committed
27

28
export ENABLE_PROFILING_DEBUG=true
29
export ENABLE_GRAPH_MODE=false
helloyongyang's avatar
update  
helloyongyang committed
30

31
torchrun --nproc_per_node=4 -m lightx2v.infer \
Xinchi Huang's avatar
Xinchi Huang committed
32
33
34
--model_cls wan2.1 \
--task t2v \
--model_path $model_path \
35
--config_json ${lightx2v_path}/configs/wan_t2v_dist.json \
Xinchi Huang's avatar
Xinchi Huang committed
36
--prompt "Two anthropomorphic cats in comfy boxing gear and bright gloves fight intensely on a spotlighted stage." \
helloyongyang's avatar
helloyongyang committed
37
--negative_prompt 色调艳丽,过曝,静态,细节模糊不清,字幕,风格,作品,画作,画面,静止,整体发灰,最差质量,低质量,JPEG压缩残留,丑陋的,残缺的,多余的手指,画得不好的手部,画得不好的脸部,畸形的,毁容的,形态畸形的肢体,手指融合,静止不动的画面,杂乱的背景,三条腿,背景人很多,倒着走 \
38
--save_video_path ${lightx2v_path}/save_results/output_lightx2v_wan_t2v.mp4