chore: change models path

This commit is contained in:
wql 2024-09-19 13:52:25 +08:00
parent bbbe4e2d00
commit b83275d5c6
1 changed files with 4 additions and 4 deletions

View File

@ -16,16 +16,16 @@ def main():
model_name_or_path = ""
template = ""
if model == "9g-8B":
model_name_or_path = "ms_cache/hub/qy/sft_8b_v2"
model_name_or_path = "../../../models/sft_8b_v2"
template = "default"
elif model == "Baichuan2-7B":
model_name_or_path = "ms_cache/hub/baichuan-inc/Baichuan2-7B-Base"
model_name_or_path = "../../../models/Baichuan2-7B-Base"
template = "baichuan2"
elif model == "ChatGLM2-6B":
model_name_or_path = "ms_cache/hub/zhipuai/chatglm2-6b"
model_name_or_path = "../../../models/chatglm2-6b"
template = "chatglm2"
elif model == "Llama2-7B":
model_name_or_path = "ms_cache/hub/modelscope/llama-2-7b-ms"
model_name_or_path = "../../../models/llama-2-7b-ms"
template = "llama2"
elif model == "Qwen-7B":
model_name_or_path = "../../../models/qwen"