Spaces:
Build error
Build error
| name="i2v_512_test" | |
| ckpt='checkpoints/i2v_512_v1/model.ckpt' | |
| config='configs/inference_i2v_512_v1.0.yaml' | |
| prompt_file="prompts/i2v_prompts/test_prompts.txt" | |
| condimage_dir="prompts/i2v_prompts" | |
| res_dir="results" | |
| python3 scripts/evaluation/inference.py \ | |
| --seed 123 \ | |
| --mode 'i2v' \ | |
| --ckpt_path $ckpt \ | |
| --config $config \ | |
| --savedir $res_dir/$name \ | |
| --n_samples 1 \ | |
| --bs 1 --height 320 --width 512 \ | |
| --unconditional_guidance_scale 12.0 \ | |
| --ddim_steps 50 \ | |
| --ddim_eta 1.0 \ | |
| --prompt_file $prompt_file \ | |
| --cond_input $condimage_dir \ | |
| --fps 8 | |