OpenCompass/opencompass/datasets/eprstmt.py

28 lines
686 B
Python
Raw Normal View History

2023-07-04 22:11:33 +08:00
import json
from datasets import Dataset
from opencompass.registry import LOAD_DATASET
from .base import BaseDataset
@LOAD_DATASET.register_module()
class eprstmtDataset_V2(BaseDataset):
@staticmethod
def load(path):
data = []
2023-10-27 20:31:22 +08:00
with open(path, 'r', encoding='utf-8') as f:
2023-07-04 22:11:33 +08:00
for line in f:
line = json.loads(line)
item = {
'sentence': line['sentence'],
'label': {
'Positive': 'A',
'Negative': 'B',
}[line['label']],
}
data.append(item)
return Dataset.from_list(data)