|
import json |
|
import datasets |
|
import os |
|
from datasets import DatasetBuilder, SplitGenerator, DownloadConfig, Split |
|
|
|
from datasets import GeneratorBasedBuilder, SplitGenerator, Split |
|
|
|
|
|
class TextDataset(GeneratorBasedBuilder): |
|
VERSION = "1.0.0" |
|
BUILDER_CONFIGS = [ |
|
datasets.BuilderConfig(name="text", version=VERSION, description="Text data"), |
|
] |
|
|
|
def _info(self): |
|
return datasets.DatasetInfo( |
|
features=datasets.Features({"text": datasets.Value("string")}) |
|
) |
|
|
|
def _split_generators(self, dl_manager): |
|
raw_paths = { |
|
"1": "./chunked_1.jsonl", |
|
"2": "./chunked_2.jsonl", |
|
"3": "./chunked_3.jsonl", |
|
"4": "./chunked_4.jsonl", |
|
"5": "./chunked_5.jsonl", |
|
"6": "./chunked_6.jsonl", |
|
"7": "./chunked_7.jsonl", |
|
"8": "./chunked_8.jsonl", |
|
"9": "./chunked_9.jsonl", |
|
"10": "./chunked_10.jsonl", |
|
} |
|
full_paths = { |
|
k: dl_manager.download_and_extract(v) for k, v in raw_paths.items() |
|
} |
|
return [ |
|
SplitGenerator(name=k, gen_kwargs={"filepath": v}) |
|
for k, v in full_paths.items() |
|
] |
|
|
|
def _generate_examples(self, filepath): |
|
with open(filepath, encoding="utf-8") as f: |
|
for id_, line in enumerate(f): |
|
yield id_, json.loads(line) |
|
|