File size: 1,894 Bytes
2370374
 
 
 
 
 
 
 
 
38098c2
2370374
 
 
 
 
 
 
 
9eb0bd0
2370374
 
 
 
 
 
 
 
 
 
 
 
 
f80b84b
bc54dae
f80b84b
2370374
 
 
 
 
 
 
 
005128d
 
2370374
ffc1ea2
abe3d90
2370374
 
 
 
 
e09b750
2370374
 
 
 
 
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
import csv
import os

import datasets

logger = datasets.logging.get_logger(__name__)

_DESCRIPTION = "Custom dataset for extracting audio files and matching sentences."

_DATA_URL = "https://huggingface.co/datasets/ugshanyu/dataset/resolve/main"  # Replace with the URL of your data

class CustomDataset(datasets.GeneratorBasedBuilder):

    VERSION = datasets.Version("1.0.0")

    def _info(self):
        features = datasets.Features(
            {
                "audio": datasets.Audio(sampling_rate=48_000),
                "sentence": datasets.Value("string"),
            }
        )

        return datasets.DatasetInfo(
            description=_DESCRIPTION,
            features=features,
            supervised_keys=("audio", "sentence"),
            homepage=None,
            citation=None,
        )

    def _split_generators(self, dl_manager):
        audio_path = dl_manager.download_and_extract(_DATA_URL+"/audo.zip")
        csv_path = dl_manager.download_and_extract(_DATA_URL+"/comma.csv")
        
        return [
            datasets.SplitGenerator(
                name=datasets.Split.TRAIN,
                gen_kwargs={"audio_path": audio_path, "csv_path": csv_path},
            )
        ]

    def _generate_examples(self, audio_path, csv_path):
        print(audio_path)
        print(csv_path)
        key = 0
        print(os.listdir(audio_path))
        
        with open(csv_path, encoding="utf-8") as csv_file:
            csv_reader = csv.DictReader(csv_file)
            for row in csv_reader:
                original_sentence_id, sentence, locale = row.values()
                audio_file = f"{original_sentence_id}.mp3"
                audio_file_path = os.path.join(audio_path, audio_file)
                yield key, {
                    "audio": audio_file_path,
                    "sentence": sentence,
                }
                key += 1