| | import datasets |
| | import os |
| | import json |
| |
|
| |
|
| | _CITATION = """ |
| | |
| | """ |
| |
|
| | _DESCRIPTION = """ |
| | |
| | """ |
| |
|
| | class Builder(datasets.GeneratorBasedBuilder): |
| | VERSION = datasets.Version("1.0.0") |
| |
|
| | BUILDER_CONFIGS = [ |
| | datasets.BuilderConfig(name=name, version=datasets.Version("1.0.0"), description=_DESCRIPTION) |
| | for name in ["2", "3", "4"] |
| | ] |
| |
|
| | def _info(self): |
| | features = datasets.Features( |
| | { |
| | "input": datasets.Value("string"), |
| | "output": datasets.Value("string"), |
| | } |
| | ) |
| | return datasets.DatasetInfo( |
| | description=_DESCRIPTION, |
| | features=features, |
| | homepage="", |
| | license="", |
| | citation=_CITATION, |
| | ) |
| |
|
| | def _split_generators(self, dl_manager): |
| | train_json = dl_manager.download(os.path.join(self.config.name, "train.jsonl")) |
| | test_json = dl_manager.download(os.path.join(self.config.name, "test.jsonl")) |
| |
|
| | return [ |
| | datasets.SplitGenerator( |
| | name=datasets.Split.TRAIN, |
| | gen_kwargs={"path": train_json}, |
| | ), |
| | datasets.SplitGenerator( |
| | name=datasets.Split.TEST, |
| | gen_kwargs={"path": test_json}, |
| | ), |
| | ] |
| |
|
| | |
| | def _generate_examples(self, path): |
| | with open(path, encoding="utf-8") as f: |
| | for key, row in enumerate(f): |
| | yield key, json.loads(row) |
| |
|