"cacheflow/server/async_llm_server.py" did not exist on "f746ced08d224113110adfc5526d952e51972515"
leval.py 780 Bytes
Newer Older
Tong Gao's avatar
Tong Gao committed
1
2
3
summarizer = dict(
    dataset_abbrs = [
        '--------- LEval Exact Match (Acc) ---------', # category
4
        'LEval_coursera',
Tong Gao's avatar
Tong Gao committed
5
6
        'LEval_gsm100',
        'LEval_quality',
7
        'LEval_tpo',
Tong Gao's avatar
Tong Gao committed
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
        'LEval_topic_retrieval',
        '--------- LEval Gen (ROUGE) ---------', # category
        'LEval_financialqa',
        'LEval_gov_report_summ',
        'LEval_legal_contract_qa',
        'LEval_meeting_summ',
        'LEval_multidocqa',
        'LEval_narrativeqa',
        'LEval_nq',
        'LEval_news_summ',
        'LEval_paper_assistant',
        'LEval_patent_summ',
        'LEval_review_summ',
        'LEval_scientificqa',
        'LEval_tvshow_summ'
    ],
24
    summary_groups=sum([v for k, v in locals().items() if k.endswith('_summary_groups')], []),
Tong Gao's avatar
Tong Gao committed
25
)