Skip to content

Commit

Permalink
[Bug] Fix Korbench dataset module (#1717)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaiziXiao authored Nov 26, 2024
1 parent f97c4ea commit ef695e2
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions opencompass/configs/models/deepseek/lmdeploy_deepseek_v2_lite.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
from opencompass.models import TurboMindModelwithChatTemplate

models = [
dict(
type=TurboMindModelwithChatTemplate,
abbr='deepseek-v2_lite-turbomind',
path='deepseek-ai/DeepSeek-V2-Lite-Chat',
engine_config=dict(
session_len=7168,
max_batch_size=4,
tp=2,
cache_max_entry_count=0.7,
),
gen_config=dict(top_k=1, temperature=1e-6, top_p=0.9),
max_seq_len=7168,
max_out_len=2048,
batch_size=4,
run_cfg=dict(num_gpus=2),
)
]
Empty file.

0 comments on commit ef695e2

Please sign in to comment.