mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
30 lines
767 B
Python
30 lines
767 B
Python
from datasets import load_dataset
|
|
|
|
from opencompass.registry import LOAD_DATASET
|
|
|
|
from .base import BaseDataset
|
|
|
|
|
|
@LOAD_DATASET.register_module()
|
|
class siqaDataset_V2(BaseDataset):
|
|
|
|
@staticmethod
|
|
def load(**kwargs):
|
|
dataset = load_dataset(**kwargs)
|
|
|
|
def preprocess(example):
|
|
example['all_labels'] = {
|
|
'candidates': [
|
|
f'A. {example["answerA"]}',
|
|
f'B. {example["answerB"]}',
|
|
f'C. {example["answerC"]}',
|
|
],
|
|
'label':
|
|
int(example['label']) - 1
|
|
}
|
|
example['label'] = ' ABC'[int(example['label'])]
|
|
return example
|
|
|
|
dataset = dataset.map(preprocess)
|
|
return dataset
|