File size: 815 Bytes
3e09f89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from evaluate.evaluation_suite import SubTask

preprocessor = lambda x: x["text"].lower()

suite = [
    SubTask(
        data="imdb",
        split="test",
        data_preprocessor=preprocessor,
        args_for_task={
            "metric": "accuracy",
            "input_column": "text",
            "label_column": "label",
            "label_mapping": {
                "LABEL_0": 0.0,
                "LABEL_1": 1.0
            }
        }
    ),
    SubTask(
        data="sst2",
        split="test[:10]",
        data_preprocessor=preprocessor,
        args_for_task={
            "metric": "accuracy",
            "input_column": "sentence",
            "label_column": "label",
            "label_mapping": {
                "LABEL_0": 0.0,
                "LABEL_1": 1.0
            }
        }
    )
]