mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
support deepseek-r1-distill-qwen-7b and -llama-8b
This commit is contained in:
parent
f2c17190c9
commit
c3b0803013
@ -0,0 +1,17 @@
|
||||
from opencompass.models import OpenAISDK
|
||||
|
||||
models = [
|
||||
dict(
|
||||
abbr='deepseek_r1_api_distill_llama_8b_aliyun',
|
||||
type=OpenAISDK,
|
||||
path='deepseek-r1-distill-llama-8b',
|
||||
key='ENV_ALIYUN',
|
||||
openai_api_base='https://dashscope.aliyuncs.com/compatible-mode/v1',
|
||||
query_per_second=1,
|
||||
max_out_len=2048,
|
||||
max_seq_len=4096,
|
||||
batch_size=8,
|
||||
retry=30,
|
||||
verbose=True,
|
||||
),
|
||||
]
|
@ -0,0 +1,17 @@
|
||||
from opencompass.models import OpenAISDK
|
||||
|
||||
models = [
|
||||
dict(
|
||||
abbr='deepseek_r1_api_distill_qwen_7b_aliyun',
|
||||
type=OpenAISDK,
|
||||
path='deepseek-r1-distill-qwen-7b',
|
||||
key='ENV_ALIYUN',
|
||||
openai_api_base='https://dashscope.aliyuncs.com/compatible-mode/v1',
|
||||
query_per_second=1,
|
||||
max_out_len=2048,
|
||||
max_seq_len=4096,
|
||||
batch_size=8,
|
||||
retry=30,
|
||||
verbose=True,
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue
Block a user