eval_api_xunfei.py 1.31 KB
Newer Older
1
2
3
4
5
6
7
8
from mmengine.config import read_base
from opencompass.models.xunfei_api import XunFei
from opencompass.partitioners import NaivePartitioner
from opencompass.runners.local_api import LocalAPIRunner
from opencompass.tasks import OpenICLInferTask

with read_base():
    # from .datasets.collections.chat_medium import datasets
Songyang Zhang's avatar
Songyang Zhang committed
9
10
    from ..summarizers.medium import summarizer
    from ..datasets.ceval.ceval_gen import ceval_datasets
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48

datasets = [
    *ceval_datasets,
]

models = [
    dict(
        abbr='Spark-v1-1',
        type=XunFei,
        appid="xxxx",
        path='ws://spark-api.xf-yun.com/v1.1/chat',
        api_secret = "xxxxxxx",
        api_key = "xxxxxxx",
        query_per_second=1,
        max_out_len=2048,
        max_seq_len=2048,
        batch_size=8),
    dict(
        abbr='Spark-v3-1',
        type=XunFei,
        appid="xxxx",
        domain='generalv3',
        path='ws://spark-api.xf-yun.com/v3.1/chat',
        api_secret = "xxxxxxxx",
        api_key = "xxxxxxxxx",
        query_per_second=1,
        max_out_len=2048,
        max_seq_len=2048,
        batch_size=8),
]

infer = dict(
    partitioner=dict(type=NaivePartitioner),
    runner=dict(
        type=LocalAPIRunner,
        max_num_workers=2,
        concurrent_users=2,
        task=dict(type=OpenICLInferTask)),
Songyang Zhang's avatar
Songyang Zhang committed
49
50
51
)

work_dir = "outputs/api_xunfei/"