Spaces:
Running
Running
File size: 305 Bytes
dc80a97 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import os
# bash_script = 'eval_q_related_info_llama_vid.sh'
bash_script = 'eval_model_summary_llama_vid.sh'
start=0
end=45
step=11
for i in range(start, end, step):
# print(i, i+step, job_id)
# job_id+=1
cmd=f'sbatch {bash_script} {str(i)} {str(i+step)}'
# print(cmd)
os.system(cmd) |