OpenCompass/opencompass/datasets/anli.py
Leymore e7fc54baf1
[Feature] Add Xiezhi SQuAD2.0 ANLI (#101)
* add Xiezhi SQuAD2.0 ANLI; update WSC

* update

* update

* update doc string
2023-08-10 14:04:18 +08:00

19 lines
431 B
Python

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)