From 0000894bbe8c2f983d7dc38a7d1bf40ddc758839 Mon Sep 17 00:00:00 2001 From: hiyouga Date: Wed, 8 May 2024 17:10:03 +0800 Subject: [PATCH] add llama3 chinese chat Former-commit-id: 48ee46dac1aeb51e25601983452a9cc5898e08e1 --- src/llmtuner/extras/constants.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/llmtuner/extras/constants.py b/src/llmtuner/extras/constants.py index b620bed4..e055f1f3 100644 --- a/src/llmtuner/extras/constants.py +++ b/src/llmtuner/extras/constants.py @@ -577,6 +577,10 @@ register_model_group( DownloadSource.DEFAULT: "meta-llama/Meta-Llama-3-70B-Instruct", DownloadSource.MODELSCOPE: "LLM-Research/Meta-Llama-3-70B-Instruct", }, + "LLaMA3-8B-Chinese-Chat": { + DownloadSource.DEFAULT: "shenzhi-wang/Llama3-8B-Chinese-Chat", + DownloadSource.MODELSCOPE: "LLM-Research/Llama3-8B-Chinese-Chat", + }, }, template="llama3", )