File size: 431 Bytes
256a159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import json

from datasets import Dataset

from .base import BaseDataset


class AnliDataset(BaseDataset):

    @staticmethod
    def load(path: str):
        dataset = []
        with open(path, 'r') as f:
            for line in f:
                line = json.loads(line)
                line['label'] = {'c': 'A', 'e': 'B', 'n': 'C'}[line['label']]
                dataset.append(line)
        return Dataset.from_list(dataset)