From 93a1ae5f6fef77ce2c8135fef32e645ba2bb3814 Mon Sep 17 00:00:00 2001 From: chengxi <1729168290@qq.com> Date: Sat, 21 Oct 2023 14:52:19 +0800 Subject: [PATCH] =?UTF-8?q?internlm-20b=E7=9A=84=E4=BB=93=E5=BA=93?= =?UTF-8?q?=E5=90=8D=E7=A7=B0=E4=B8=BAinternlm-chat-20b?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pilot/configs/model_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pilot/configs/model_config.py b/pilot/configs/model_config.py index f05d62f05..e1575ea03 100644 --- a/pilot/configs/model_config.py +++ b/pilot/configs/model_config.py @@ -77,7 +77,7 @@ def get_device() -> str: # https://huggingface.co/internlm/internlm-chat-7b-v1_1, 7b vs 7b-v1.1: https://github.com/InternLM/InternLM/issues/288 "internlm-7b": os.path.join(MODEL_PATH, "internlm-chat-7b"), "internlm-7b-8k": os.path.join(MODEL_PATH, "internlm-chat-7b-8k"), - "internlm-20b": os.path.join(MODEL_PATH, "internlm-20b-chat"), + "internlm-20b": os.path.join(MODEL_PATH, "internlm-chat-20b"), # For test now "opt-125m": os.path.join(MODEL_PATH, "opt-125m"), }