Spaces:
Runtime error
Runtime error
File size: 2,516 Bytes
42d94eb |
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 |
#!/bin/bash
# Description: This script demonstrates how to inference a video based on HunyuanVideo model
TOKENIZERS_PARALLELISM=false torchrun --nproc_per_node=8 \
sample_video.py --video-size 1280 720 --video-length 129 \
--infer-steps 50 --prompt "A cat walks on the grass, realistic style." \
--flow-reverse --ulysses-degree=8 --ring-degree=1 --seed 42 --save-path ./results
TOKENIZERS_PARALLELISM=false torchrun --nproc_per_node 4 \
sample_video.py --video-size 1280 720 --video-length 129 \
--infer-steps 50 --prompt "A cat walks on the grass, realistic style." \
--flow-reverse --ulysses-degree=4 --ring-degree=1 --seed 42 --save-path ./results
TOKENIZERS_PARALLELISM=false torchrun --nproc_per_node=2 \
sample_video.py --video-size 1280 720 --video-length 129 \
--infer-steps 50 --prompt "A cat walks on the grass, realistic style." \
--flow-reverse --ulysses-degree=2 --ring-degree=1 --seed 42 --save-path ./results
TOKENIZERS_PARALLELISM=false torchrun --nproc_per_node=1 \
sample_video.py --video-size 1280 720 --video-length 129 \
--infer-steps 50 --prompt "A cat walks on the grass, realistic style." \
--flow-reverse --ulysses-degree=1 --ring-degree=1 --seed 42 --save-path ./results
TOKENIZERS_PARALLELISM=false torchrun --nproc_per_node=6 \
sample_video.py --video-size 960 960 --video-length 129 \
--infer-steps 50 --prompt "A cat walks on the grass, realistic style." \
--flow-reverse --ulysses-degree=6 --ring-degree=1 --seed 42 --save-path ./results
TOKENIZERS_PARALLELISM=false torchrun --nproc_per_node=3 \
sample_video.py --video-size 960 960 --video-length 129 \
--infer-steps 50 --prompt "A cat walks on the grass, realistic style." \
--flow-reverse --ulysses-degree=3 --ring-degree=1 --seed 42 --save-path ./results
TOKENIZERS_PARALLELISM=false torchrun --nproc_per_node=2 \
sample_video.py --video-size 960 960 --video-length 129 \
--infer-steps 50 --prompt "A cat walks on the grass, realistic style." \
--flow-reverse --ulysses-degree=2 --ring-degree=1 --seed 42 --save-path ./results
TOKENIZERS_PARALLELISM=false torchrun --nproc_per_node=1 \
sample_video.py --video-size 1280 720 --video-length 129 \
--infer-steps 50 --prompt "A cat walks on the grass, realistic style." \
--flow-reverse --ulysses-degree=1 --ring-degree=1 --seed 42 --save-path ./results
|