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