mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
21 lines
483 B
Python
21 lines
483 B
Python
import pandas as pd
|
|
from datasets import Dataset
|
|
|
|
from opencompass.registry import LOAD_DATASET
|
|
|
|
from .base import BaseDataset
|
|
|
|
|
|
@LOAD_DATASET.register_module()
|
|
class HungarianExamMathDataset(BaseDataset):
|
|
|
|
@staticmethod
|
|
def load(path):
|
|
df = pd.read_csv(path)
|
|
df.columns = ['question']
|
|
outputs = [{
|
|
'question': question
|
|
} for question in df['question'].tolist()]
|
|
dataset = Dataset.from_list(outputs)
|
|
return dataset
|