mathbench.py 1.86 KB
Newer Older
Hubert's avatar
Hubert committed
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

mathbench_summary_groups = [
    {
        'name': 'mathbench-college',
        'subsets': [
            ['mathbench-college-single_choice_cn', 'acc_1'],
            ['mathbench-college-cloze_en', 'accuracy'],
        ]
    },
    {
        'name': 'mathbench-high',
        'subsets': [
            ['mathbench-high-single_choice_cn', 'acc_1'],
            ['mathbench-high-single_choice_en', 'acc_1'],
        ]
    },
    {
        'name': 'mathbench-middle',
        'subsets': [
            ['mathbench-middle-single_choice_cn', 'acc_1'],
        ]
    },
    {
        'name': 'mathbench-primary',
        'subsets': [
            ['mathbench-primary-cloze_cn', 'accuracy'],
        ]
    },
    {
        'name': 'mathbench',
        'subsets': [
            'mathbench-college',
            'mathbench-high',
            'mathbench-middle',
            'mathbench-primary',
        ],
    },
    {
        'name': 'mathbench-college-circular',
        'subsets': [
            ['mathbench-college-single_choice_cn', 'perf_4'],
        ]
    },
    {
        'name': 'mathbench-high-circular',
        'subsets': [
            ['mathbench-high-single_choice_cn', 'perf_4'],
            ['mathbench-high-single_choice_en', 'perf_4'],
        ]
    },
    {
        'name': 'mathbench-middle-circular',
        'subsets': [
            ['mathbench-middle-single_choice_cn', 'perf_4'],
        ]
    },
    {
        'name': 'mathbench-circular',
        'subsets': [
            'mathbench-college-circular',
            'mathbench-high-circular',
            'mathbench-middle-circular',
        ],
    },
    {
        'name': 'mathbench-circular-and-cloze',
        'subsets': [
            'mathbench-high-circular',
            'mathbench-middle-circular',
            'mathbench-circular',
            'mathbench-college-cloze_en',
            'mathbench-primary-cloze_cn',
        ],
    }
]