chore: modify model path
This commit is contained in:
parent
fac5e83af9
commit
6e698b5ce0
|
@ -16,19 +16,19 @@ def main():
|
|||
model_name_or_path = ""
|
||||
template = ""
|
||||
if model == "9g-8B":
|
||||
model_name_or_path = "../../models/sft_8b_v2"
|
||||
model_name_or_path = "ms_cache/hub/qy/sft_8b_v2"
|
||||
template = "default"
|
||||
elif model == "Baichuan2-7B":
|
||||
model_name_or_path = "../../models/Baichuan2-7B-Base"
|
||||
model_name_or_path = "ms_cache/hub/baichuan-inc/Baichuan2-7B-Base"
|
||||
template = "baichuan2"
|
||||
elif model == "ChatGLM2-6B":
|
||||
model_name_or_path = "../../models/chatglm2-6b"
|
||||
model_name_or_path = "ms_cache/hub/zhipuai/chatglm2-6b"
|
||||
template = "chatglm2"
|
||||
elif model == "Llama2-7B":
|
||||
model_name_or_path = "../../models/llama-2-7b-ms"
|
||||
model_name_or_path = "ms_cache/hub/modelscope/llama-2-7b-ms"
|
||||
template = "llama2"
|
||||
elif model == "Qwen-7B":
|
||||
model_name_or_path = "../../models/Qwen-7B"
|
||||
model_name_or_path = "ms_cache/hub/qwen/Qwen-7B"
|
||||
template = "qwen"
|
||||
else:
|
||||
print("ERROR: model not supported.")
|
||||
|
|
|
@ -46,6 +46,6 @@ fi
|
|||
wait $train_pid
|
||||
echo "Train ended"
|
||||
|
||||
sleep 60
|
||||
# sleep 60
|
||||
kill $npu_status_pid
|
||||
echo "Npu status ended"
|
Loading…
Reference in New Issue