eval_internlm_turbomind.py 2.65 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
from mmengine.config import read_base
from opencompass.models.turbomind import TurboMindModel


with read_base():
    # choose a list of datasets
    from .datasets.mmlu.mmlu_gen_a484b3 import mmlu_datasets
    from .datasets.ceval.ceval_gen_5f30c7 import ceval_datasets
    from .datasets.SuperGLUE_WiC.SuperGLUE_WiC_gen_d06864 import WiC_datasets
    from .datasets.triviaqa.triviaqa_gen_2121ce import triviaqa_datasets
    from .datasets.gsm8k.gsm8k_gen_1d7fe4 import gsm8k_datasets
    from .datasets.humaneval.humaneval_gen_8e312c import humaneval_datasets
    # and output the results in a choosen format
    from .summarizers.medium import summarizer

datasets = sum((v for k, v in locals().items() if k.endswith('_datasets')), [])

# # config for internlm-7b model
# models = [
#     dict(
#         type=TurboMindModel,
#         abbr='internlm-7b-turbomind',
#         path="./turbomind",
#         max_out_len=100,
#         max_seq_len=2048,
#         batch_size=32,
#         concurrency=32,
#         run_cfg=dict(num_gpus=1, num_procs=1),
#     )
# ]

# # config for internlm-7b-w4 model
# models = [
#     dict(
#         type=TurboMindModel,
#         abbr='internlm-7b-w4-turbomind',
#         path="./turbomind",
#         max_out_len=100,
#         max_seq_len=2048,
#         batch_size=32,
#         concurrency=32,
#         run_cfg=dict(num_gpus=1, num_procs=1),
#     )
# ]

# # config for internlm-7b-w4kv8 model
# models = [
#     dict(
#         type=TurboMindModel,
#         abbr='internlm-7b-w4kv8-turbomind',
#         path="./turbomind",
#         max_out_len=100,
#         max_seq_len=2048,
#         batch_size=32,
#         concurrency=32,
#         run_cfg=dict(num_gpus=1, num_procs=1),
#     )
# ]

# config for internlm-20b model
models = [
    dict(
        type=TurboMindModel,
        abbr='internlm-20b-turbomind',
        path="./turbomind",
        max_out_len=100,
        max_seq_len=2048,
        batch_size=8,
        concurrency=8,
        run_cfg=dict(num_gpus=1, num_procs=1),
    )
]

# config for internlm-20b-w4 model
# models = [
#     dict(
#         type=TurboMindModel,
#         abbr='internlm-20b-w4-turbomind',
#         path="./turbomind",
#         max_out_len=100,
#         max_seq_len=2048,
#         batch_size=16,
#         concurrency=16,
#         run_cfg=dict(num_gpus=1, num_procs=1),
#     )
# ]


# config for internlm-20b-w4kv8 model
# models = [
#     dict(
#         type=TurboMindModel,
#         abbr='internlm-20b-w4kv8-turbomind',
#         path="./turbomind",
#         max_out_len=100,
#         max_seq_len=2048,
#         batch_size=16,
#         concurrency=16,
#         run_cfg=dict(num_gpus=1, num_procs=1),
#     )
# ]