OpenCompass/opencompass/datasets/csl.py
2023-07-05 01:30:27 +00:00

44 lines
1010 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import json
from datasets import Dataset, load_dataset
from opencompass.registry import LOAD_DATASET
from .base import BaseDataset
@LOAD_DATASET.register_module()
class CslDataset(BaseDataset):
@staticmethod
def load(**kwargs):
dataset = load_dataset(**kwargs)
def preprocess(example):
keywords = ''.join(example['keyword'])
example['keywords'] = keywords
return example
dataset = dataset.map(preprocess)
return dataset
@LOAD_DATASET.register_module()
class CslDataset_V2(BaseDataset):
@staticmethod
def load(path):
data = []
with open(path, 'r') as f:
for line in f:
line = json.loads(line)
item = {
'abst': line['abst'],
'keywords': ''.join(line['keyword']),
'label': 'AB'[int(line['label'])],
}
data.append(item)
return Dataset.from_list(data)