mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
19 lines
431 B
Python
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)
|