From 096c347e7d39c6d63d8af595db0edecf4e09582e Mon Sep 17 00:00:00 2001 From: Linchen Xiao Date: Mon, 21 Oct 2024 16:58:18 +0800 Subject: [PATCH] [Fix] Qwen 2.5 model config (#1626) * [Fix] Fix Qwen 2.5 model config * [Fix] Fix Qwen 2.5 model config * [Fix] Fix Qwen 2.5 model config --- configs/models/qwen2_5/hf_qwen2_5_14b_instruct.py | 2 +- configs/models/qwen2_5/hf_qwen2_5_32b_instruct.py | 2 +- configs/models/qwen2_5/hf_qwen2_5_72b_instruct.py | 2 +- configs/models/qwen2_5/hf_qwen2_5_7b_instruct.py | 2 +- opencompass/configs/models/qwen2_5/hf_qwen2_5_14b_instruct.py | 2 +- opencompass/configs/models/qwen2_5/hf_qwen2_5_32b_instruct.py | 2 +- opencompass/configs/models/qwen2_5/hf_qwen2_5_72b_instruct.py | 2 +- opencompass/configs/models/qwen2_5/hf_qwen2_5_7b_instruct.py | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/configs/models/qwen2_5/hf_qwen2_5_14b_instruct.py b/configs/models/qwen2_5/hf_qwen2_5_14b_instruct.py index af5a8816..3680544b 100644 --- a/configs/models/qwen2_5/hf_qwen2_5_14b_instruct.py +++ b/configs/models/qwen2_5/hf_qwen2_5_14b_instruct.py @@ -4,7 +4,7 @@ models = [ dict( type=HuggingFacewithChatTemplate, abbr='qwen2.5-14b-instruct-hf', - path='Qwen/Qwen2.5-14B-Instruc', + path='Qwen/Qwen2.5-14B-Instruct', max_out_len=4096, batch_size=8, run_cfg=dict(num_gpus=2), diff --git a/configs/models/qwen2_5/hf_qwen2_5_32b_instruct.py b/configs/models/qwen2_5/hf_qwen2_5_32b_instruct.py index f2051f81..3993a113 100644 --- a/configs/models/qwen2_5/hf_qwen2_5_32b_instruct.py +++ b/configs/models/qwen2_5/hf_qwen2_5_32b_instruct.py @@ -4,7 +4,7 @@ models = [ dict( type=HuggingFacewithChatTemplate, abbr='qwen2.5-32b-instruct-hf', - path='Qwen/Qwen2.5-32B-Instruc', + path='Qwen/Qwen2.5-32B-Instruct', max_out_len=4096, batch_size=8, run_cfg=dict(num_gpus=2), diff --git a/configs/models/qwen2_5/hf_qwen2_5_72b_instruct.py b/configs/models/qwen2_5/hf_qwen2_5_72b_instruct.py index c7fcf53c..4ece03b9 100644 --- a/configs/models/qwen2_5/hf_qwen2_5_72b_instruct.py +++ b/configs/models/qwen2_5/hf_qwen2_5_72b_instruct.py @@ -4,7 +4,7 @@ models = [ dict( type=HuggingFacewithChatTemplate, abbr='qwen2.5-72b-instruct-hf', - path='Qwen/Qwen2.5-72B-Instruc', + path='Qwen/Qwen2.5-72B-Instruct', max_out_len=4096, batch_size=8, run_cfg=dict(num_gpus=4), diff --git a/configs/models/qwen2_5/hf_qwen2_5_7b_instruct.py b/configs/models/qwen2_5/hf_qwen2_5_7b_instruct.py index a9895be6..4551c725 100644 --- a/configs/models/qwen2_5/hf_qwen2_5_7b_instruct.py +++ b/configs/models/qwen2_5/hf_qwen2_5_7b_instruct.py @@ -4,7 +4,7 @@ models = [ dict( type=HuggingFacewithChatTemplate, abbr='qwen2.5-7b-instruct-hf', - path='Qwen/Qwen2.5-7B-Instruc', + path='Qwen/Qwen2.5-7B-Instruct', max_out_len=4096, batch_size=8, run_cfg=dict(num_gpus=1), diff --git a/opencompass/configs/models/qwen2_5/hf_qwen2_5_14b_instruct.py b/opencompass/configs/models/qwen2_5/hf_qwen2_5_14b_instruct.py index af5a8816..3680544b 100644 --- a/opencompass/configs/models/qwen2_5/hf_qwen2_5_14b_instruct.py +++ b/opencompass/configs/models/qwen2_5/hf_qwen2_5_14b_instruct.py @@ -4,7 +4,7 @@ models = [ dict( type=HuggingFacewithChatTemplate, abbr='qwen2.5-14b-instruct-hf', - path='Qwen/Qwen2.5-14B-Instruc', + path='Qwen/Qwen2.5-14B-Instruct', max_out_len=4096, batch_size=8, run_cfg=dict(num_gpus=2), diff --git a/opencompass/configs/models/qwen2_5/hf_qwen2_5_32b_instruct.py b/opencompass/configs/models/qwen2_5/hf_qwen2_5_32b_instruct.py index f2051f81..3993a113 100644 --- a/opencompass/configs/models/qwen2_5/hf_qwen2_5_32b_instruct.py +++ b/opencompass/configs/models/qwen2_5/hf_qwen2_5_32b_instruct.py @@ -4,7 +4,7 @@ models = [ dict( type=HuggingFacewithChatTemplate, abbr='qwen2.5-32b-instruct-hf', - path='Qwen/Qwen2.5-32B-Instruc', + path='Qwen/Qwen2.5-32B-Instruct', max_out_len=4096, batch_size=8, run_cfg=dict(num_gpus=2), diff --git a/opencompass/configs/models/qwen2_5/hf_qwen2_5_72b_instruct.py b/opencompass/configs/models/qwen2_5/hf_qwen2_5_72b_instruct.py index c7fcf53c..4ece03b9 100644 --- a/opencompass/configs/models/qwen2_5/hf_qwen2_5_72b_instruct.py +++ b/opencompass/configs/models/qwen2_5/hf_qwen2_5_72b_instruct.py @@ -4,7 +4,7 @@ models = [ dict( type=HuggingFacewithChatTemplate, abbr='qwen2.5-72b-instruct-hf', - path='Qwen/Qwen2.5-72B-Instruc', + path='Qwen/Qwen2.5-72B-Instruct', max_out_len=4096, batch_size=8, run_cfg=dict(num_gpus=4), diff --git a/opencompass/configs/models/qwen2_5/hf_qwen2_5_7b_instruct.py b/opencompass/configs/models/qwen2_5/hf_qwen2_5_7b_instruct.py index a9895be6..4551c725 100644 --- a/opencompass/configs/models/qwen2_5/hf_qwen2_5_7b_instruct.py +++ b/opencompass/configs/models/qwen2_5/hf_qwen2_5_7b_instruct.py @@ -4,7 +4,7 @@ models = [ dict( type=HuggingFacewithChatTemplate, abbr='qwen2.5-7b-instruct-hf', - path='Qwen/Qwen2.5-7B-Instruc', + path='Qwen/Qwen2.5-7B-Instruct', max_out_len=4096, batch_size=8, run_cfg=dict(num_gpus=1),