mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
![]() |
import json
|
||
|
|
||
|
from datasets import Dataset
|
||
|
|
||
|
from opencompass.registry import LOAD_DATASET, TEXT_POSTPROCESSORS
|
||
|
|
||
|
from .base import BaseDataset
|
||
|
|
||
|
|
||
|
@LOAD_DATASET.register_module()
|
||
|
class XsumDataset(BaseDataset):
|
||
|
|
||
|
@staticmethod
|
||
|
def load(path: str):
|
||
|
with open(path, 'r', errors='ignore') as in_f:
|
||
|
rows = []
|
||
|
for i, line in enumerate(in_f):
|
||
|
if i == 1000:
|
||
|
break
|
||
|
sample = json.loads(line.strip())
|
||
|
dialogue = sample['dialogue']
|
||
|
summary = sample['summary']
|
||
|
if isinstance(dialogue, float) or isinstance(summary, float):
|
||
|
continue
|
||
|
rows.append({'dialogue': dialogue, 'summary': summary})
|
||
|
dataset = Dataset.from_dict({
|
||
|
'dialogue': [row['dialogue'] for row in rows],
|
||
|
'summary': [row['summary'] for row in rows]
|
||
|
})
|
||
|
return dataset
|
||
|
|
||
|
|
||
|
@TEXT_POSTPROCESSORS.register_module('Xsum')
|
||
|
def Xsum_postprocess(text: str) -> str:
|
||
|
text = text.strip().split('\n')[0].strip()
|
||
|
return text
|