mirror of https://github.com/hpcaitech/ColossalAI
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
603 B
25 lines
603 B
from abc import abstractstaticmethod
|
|
|
|
from colossal_eval.utils import jdump
|
|
|
|
|
|
class BaseDataset:
|
|
"""
|
|
Base class for dataset wrapper.
|
|
|
|
Args:
|
|
path: The path to the original dataset.
|
|
logger: Logger for the dataset.
|
|
"""
|
|
|
|
def __init__(self, path, logger, few_shot):
|
|
self.dataset = self.load(path, logger, few_shot)
|
|
|
|
def save(self, save_path):
|
|
"""Save the converted dataset"""
|
|
jdump(self.dataset, save_path)
|
|
|
|
@abstractstaticmethod
|
|
def load(path, logger):
|
|
"""Load the original dataset and convert it into the inference dataset"""
|