File size: 1,397 Bytes
f5bce2f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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)