Spaces:
Running
on
Zero
Running
on
Zero
File size: 343 Bytes
2ada650 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import os
import shutil
import sys
start=0
end=7800
step=800
# Mistral
for i in range(start,end,step):
cmd=f'sbatch ./mistral_evalualtion.sh {i} {i+step}'
# print(cmd)
os.system(cmd)
# Llama 2
# for i in range(start,end,step):
# cmd=f'sbatch ./llama2_evalualtion.sh {i} {i+step}'
# # print(cmd)
# os.system(cmd) |