| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| """TODO: Add a description here.""" |
|
|
| import datasets |
|
|
|
|
| |
| |
| _CITATION = """\ |
| |
| """ |
|
|
| |
| |
| _DESCRIPTION = """\ |
| Generated dataset for testing numerical reasoning |
| """ |
|
|
| |
| _HOMEPAGE = "" |
|
|
| |
| _LICENSE = "" |
|
|
| class NumericalReasoningArithmetic(datasets.GeneratorBasedBuilder): |
| """TODO: Short description of my dataset.""" |
|
|
| VERSION = datasets.Version("0.1.0") |
|
|
| BUILDER_CONFIGS = [ |
| datasets.BuilderConfig( |
| name="{}".format(num), |
| version=datasets.Version("0.1.0"), |
| description="Task with {} as the first operand".format(num)) \ |
| for num in range(0,100) |
| ] |
|
|
| DEFAULT_CONFIG_NAME = "multiplication" |
|
|
| def _info(self): |
| features = datasets.Features( |
| { |
| "x1": datasets.Value("int32"), |
| "x2": datasets.Value("int32"), |
| "y_mul": datasets.Value("int32"), |
| "y_add": datasets.Value("int32"), |
| } |
| ) |
|
|
| return datasets.DatasetInfo( |
| description=_DESCRIPTION, |
| features=features, |
| homepage=_HOMEPAGE, |
| license=_LICENSE, |
| citation=_CITATION, |
| ) |
|
|
| def _split_generators(self, dl_manager): |
| return [ |
| datasets.SplitGenerator( |
| name=datasets.Split.TEST, |
| gen_kwargs={ |
| "split": "test" |
| }, |
| ), |
| ] |
|
|
| def _generate_examples(self, split): |
|
|
| x1 = int(self.config.name) |
| for key, x2 in enumerate(range(1,51)): |
| yield key, { |
| "x1": x1, |
| "x2": x2, |
| "y_mul": x1*x2, |
| "y_add": x1+x2, |
| } |
|
|