mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
16 lines
589 B
Python
16 lines
589 B
Python
![]() |
from opencompass.models import HuggingFacewithChatTemplate
|
||
|
from opencompass.utils.text_postprocessors import extract_non_reasoning_content
|
||
|
|
||
|
models = [
|
||
|
dict(
|
||
|
type=HuggingFacewithChatTemplate,
|
||
|
abbr='huatuogpt-o1-7b-hf',
|
||
|
path='FreedomIntelligence/HuatuoGPT-o1-7B',
|
||
|
max_out_len=2048,
|
||
|
batch_size=8,
|
||
|
model_kwargs=dict(device_map='auto', trust_remote_code=True),
|
||
|
run_cfg=dict(num_gpus=1),
|
||
|
pred_postprocessor=dict(type=extract_non_reasoning_content, think_start_token='## Thinking', think_end_token='## Final Response'),
|
||
|
)
|
||
|
]
|