mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
28 lines
668 B
Python
28 lines
668 B
Python
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 = []
|
|
with open(path, 'r') as f:
|
|
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)
|