mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
42 lines
1.1 KiB
Python
42 lines
1.1 KiB
Python
![]() |
from datasets import load_dataset
|
||
|
|
||
|
from opencompass.registry import LOAD_DATASET
|
||
|
|
||
|
from .base import BaseDataset
|
||
|
|
||
|
|
||
|
@LOAD_DATASET.register_module()
|
||
|
class hellaswagDataset(BaseDataset):
|
||
|
|
||
|
@staticmethod
|
||
|
def load(**kwargs):
|
||
|
dataset = load_dataset(**kwargs)
|
||
|
|
||
|
def preprocess(example):
|
||
|
for i in range(4):
|
||
|
example[chr(ord('A') + i)] = example['endings'][i]
|
||
|
return example
|
||
|
|
||
|
dataset = dataset.map(preprocess).remove_columns(['endings'])
|
||
|
return dataset
|
||
|
|
||
|
|
||
|
@LOAD_DATASET.register_module()
|
||
|
class hellaswagDataset_V2(BaseDataset):
|
||
|
|
||
|
@staticmethod
|
||
|
def load(**kwargs):
|
||
|
dataset = load_dataset(**kwargs)
|
||
|
|
||
|
def preprocess(example):
|
||
|
for i in range(4):
|
||
|
example[chr(ord('A') + i)] = example['endings'][i]
|
||
|
if example['label']:
|
||
|
example['label'] = 'ABCD'[int(example['label'])]
|
||
|
else:
|
||
|
example['label'] = 'NULL'
|
||
|
return example
|
||
|
|
||
|
dataset = dataset.map(preprocess).remove_columns(['endings'])
|
||
|
return dataset
|