| for i in $(seq 1 10000); do | |
| CUDA_VISIBLE_DEVICES=0 python infer_helios.py \ | |
| --base_model_path "./checkpoints/Helios-Base" \ | |
| --transformer_path "./checkpoints/Helios-Base" \ | |
| --sample_type "t2v" \ | |
| --num_frames 99 \ | |
| --fps 24 \ | |
| --prompt "A woman dancing." \ | |
| --guidance_scale 5.0 \ | |
| --enable_compile \ | |
| --output_folder "./temp/run_${i}" | |
| done |