File size: 2,708 Bytes
7367bcc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# coding=utf-8
# Copyright 2021 Artem Ploujnikov


# Lint as: python3
import json

import datasets

_DESCRIPTION = """\
This is a public domain speech dataset consisting of 13,100 short audio
clips of a single speaker reading passages from 7 non-fiction books. A
transcription is provided for each clip. Clips vary in length from 1 to 10
seconds and have a total length of approximately 24 hours.
"""

_BASE_URL = "https://huggingface.co/datasets/flexthink/librig2p-nostress-space/resolve/main"

_HOMEPAGE_URL = "https://huggingface.co/datasets/flexthink/ljspeech"

_PHONEMES = [
    "AA",
    "AE",
    "AH",
    "AO",
    "AW",
    "AY",
    "B",
    "CH",
    "D",
    "DH",
    "EH",
    "ER",
    "EY",
    "F",
    "G",
    "HH",
    "IH",
    "IY",
    "JH",
    "K",
    "L",
    "M",
    "N",
    "NG",
    "OW",
    "OY",
    "P",
    "R",
    "S",
    "SH",
    "T",
    "TH",
    "UH",
    "UW",
    "V",
    "W",
    "Y",
    "Z",
    "ZH",
    " "
]
_SPLITS = ["train", "valid", "test"]

class LJSpeech(datasets.GeneratorBasedBuilder):
    def __init__(self, base_url=None, splits=None, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.base_url = base_url or _BASE_URL
        self.splits = splits or _SPLITS

    def _info(self):
        return datasets.DatasetInfo(
            description=_DESCRIPTION,
            features=datasets.Features(
                {
                    "char": datasets.Value("string"),
                    "phn_raw": datasets.Sequence(datasets.Value("string")),
                    "phn": datasets.Sequence(datasets.ClassLabel(names=_PHONEMES)),
                    "wav": datasets.Value("string"),
                },
            ),
            supervised_keys=None,
            homepage=_HOMEPAGE_URL,
        )

    def _get_url(self, split):
        return f'{self.base_url}/ljspeech_{split}.json'

    def _split_generator(self, dl_manager, split):
        url = self._get_url(split)
        path = dl_manager.download_and_extract(url)
        return datasets.SplitGenerator(
            name=split,
            gen_kwargs={"datapath": path, "datatype": split},
        )

    def _split_generators(self, dl_manager):
        return [
            self._split_generator(dl_manager, split)
            for split in self.splits
        ]

    def _generate_examples(self, datapath, datatype):
        with open(datapath, encoding="utf-8") as f:
            data = json.load(f)

        for item_id, item in data.items():
            resp = {
                "char": item["char"],
                "phn": item["phn"],
                "phn_raw": item["phn"],
                "wav": item["wav"]
            }
            yield item_id, resp