mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
25 lines
581 B
Python
25 lines
581 B
Python
![]() |
import json
|
||
|
|
||
|
from datasets import Dataset
|
||
|
|
||
|
from opencompass.registry import LOAD_DATASET
|
||
|
|
||
|
from .base import BaseDataset
|
||
|
|
||
|
|
||
|
@LOAD_DATASET.register_module()
|
||
|
class AXDataset_V2(BaseDataset):
|
||
|
|
||
|
@staticmethod
|
||
|
def load(path: str):
|
||
|
dataset = []
|
||
|
with open(path, 'r') as f:
|
||
|
for line in f:
|
||
|
line = json.loads(line)
|
||
|
line['label'] = {
|
||
|
'entailment': 'A',
|
||
|
'not_entailment': 'B'
|
||
|
}[line['label']]
|
||
|
dataset.append(line)
|
||
|
return Dataset.from_list(dataset)
|