mirror of
https://github.com/THUDM/CogVideo.git
synced 2025-04-05 19:41:59 +08:00
10 lines
343 B
Bash
10 lines
343 B
Bash
#! /bin/bash
|
|
|
|
echo "RUN on $(hostname), CUDA_VISIBLE_DEVICES=$CUDA_VISIBLE_DEVICES"
|
|
|
|
run_cmd="PYTORCH_CUDA_ALLOC_CONF=expandable_segments:True torchrun --standalone --nproc_per_node=8 train_video.py --base configs/test_cogvideox_5b_i2v_lora.yaml configs/test_sft.yaml --seed $RANDOM"
|
|
|
|
echo ${run_cmd}
|
|
eval ${run_cmd}
|
|
|
|
echo "DONE on `hostname`" |