README.md CHANGED
@@ -1,3 +1,32 @@
1
  ---
2
  license: cc-by-sa-3.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
1
  ---
2
  license: cc-by-sa-3.0
3
+ dataset_info:
4
+ config_name: wikipedia_spanish
5
+ features:
6
+ - name: audio_id
7
+ dtype: string
8
+ - name: audio
9
+ dtype:
10
+ audio:
11
+ sampling_rate: 16000
12
+ - name: speaker_id
13
+ dtype: string
14
+ - name: gender
15
+ dtype: string
16
+ - name: duration
17
+ dtype: float32
18
+ - name: normalized_text
19
+ dtype: string
20
+ splits:
21
+ - name: train
22
+ num_bytes: 1916035098.198
23
+ num_examples: 11569
24
+ download_size: 1887119130
25
+ dataset_size: 1916035098.198
26
+ configs:
27
+ - config_name: wikipedia_spanish
28
+ data_files:
29
+ - split: train
30
+ path: wikipedia_spanish/train-*
31
+ default: true
32
  ---
corpus/files/metadata_train.tsv DELETED
The diff for this file is too large to render. See raw diff
 
corpus/files/tars_train.paths DELETED
@@ -1 +0,0 @@
1
- corpus/speech/train.tar.gz
 
 
wikipedia_spanish.py DELETED
@@ -1,123 +0,0 @@
1
- from collections import defaultdict
2
- import os
3
- import json
4
- import csv
5
- import datasets
6
-
7
- _NAME="wikipedia_spanish"
8
- _VERSION="1.0.0"
9
-
10
- _DESCRIPTION = """
11
- The WIKIPEDIA SPANISH CORPUS is a gender unbalanced corpus of 25 hours of
12
- duration. It contains read speech of several articles of the Wikipedia
13
- Grabada
14
- """
15
-
16
- _CITATION = """
17
- @misc{menawikipediaspanish2021,
18
- title={WIKIPEDIA SPANISH CORPUS: Audio and Transcripts in Spanish taken from the WikiProject Wikipedia Grabada.},
19
- ldc_catalog_no={LDC2021S07},
20
- DOI={https://doi.org/10.35111/7m1j-sa17},
21
- author={Hernandez Mena, Carlos Daniel and Meza Ruiz, Iván Vladimir},
22
- journal={Linguistic Data Consortium, Philadelphia},
23
- year={2021},
24
- url={https://catalog.ldc.upenn.edu/LDC2021S07},
25
- }
26
- """
27
-
28
- _HOMEPAGE = "https://catalog.ldc.upenn.edu/LDC2021S07"
29
-
30
- _LICENSE = "CC-BY-SA-3.0, See https://creativecommons.org/licenses/by-sa/3.0/deed.en"
31
-
32
- _BASE_DATA_DIR = "corpus/"
33
- _METADATA_TRAIN = os.path.join(_BASE_DATA_DIR,"files", "metadata_train.tsv")
34
-
35
- _TARS_TRAIN = os.path.join(_BASE_DATA_DIR,"files", "tars_train.paths")
36
-
37
- class WikipediaSpanishConfig(datasets.BuilderConfig):
38
- """BuilderConfig for WIKIPEDIA SPANISH CORPUS"""
39
-
40
- def __init__(self, name, **kwargs):
41
- name=_NAME
42
- super().__init__(name=name, **kwargs)
43
-
44
- class WikipediaSpanish(datasets.GeneratorBasedBuilder):
45
- """WIKIPEDIA SPANISH CORPUS"""
46
-
47
- VERSION = datasets.Version(_VERSION)
48
- BUILDER_CONFIGS = [
49
- WikipediaSpanishConfig(
50
- name=_NAME,
51
- version=datasets.Version(_VERSION),
52
- )
53
- ]
54
-
55
- def _info(self):
56
- features = datasets.Features(
57
- {
58
- "audio_id": datasets.Value("string"),
59
- "audio": datasets.Audio(sampling_rate=16000),
60
- "speaker_id": datasets.Value("string"),
61
- "gender": datasets.Value("string"),
62
- "duration": datasets.Value("float32"),
63
- "normalized_text": datasets.Value("string"),
64
- }
65
- )
66
- return datasets.DatasetInfo(
67
- description=_DESCRIPTION,
68
- features=features,
69
- homepage=_HOMEPAGE,
70
- license=_LICENSE,
71
- citation=_CITATION,
72
- )
73
-
74
- def _split_generators(self, dl_manager):
75
-
76
- metadata_train=dl_manager.download_and_extract(_METADATA_TRAIN)
77
-
78
- tars_train=dl_manager.download_and_extract(_TARS_TRAIN)
79
-
80
- hash_tar_files=defaultdict(dict)
81
-
82
- with open(tars_train,'r') as f:
83
- hash_tar_files['train']=[path.replace('\n','') for path in f]
84
-
85
- hash_meta_paths={"train":metadata_train}
86
- audio_paths = dl_manager.download(hash_tar_files)
87
-
88
- splits=["train"]
89
- local_extracted_audio_paths = (
90
- dl_manager.extract(audio_paths) if not dl_manager.is_streaming else
91
- {
92
- split:[None] * len(audio_paths[split]) for split in splits
93
- }
94
- )
95
-
96
- return [
97
- datasets.SplitGenerator(
98
- name=datasets.Split.TRAIN,
99
- gen_kwargs={
100
- "audio_archives": [dl_manager.iter_archive(archive) for archive in audio_paths["train"]],
101
- "local_extracted_archives_paths": local_extracted_audio_paths["train"],
102
- "metadata_paths": hash_meta_paths["train"],
103
- }
104
- ),
105
- ]
106
-
107
- def _generate_examples(self, audio_archives, local_extracted_archives_paths, metadata_paths):
108
-
109
- features = ["speaker_id","gender","duration","normalized_text"]
110
-
111
- with open(metadata_paths) as f:
112
- metadata = {x["audio_id"]: x for x in csv.DictReader(f, delimiter="\t")}
113
-
114
- for audio_archive, local_extracted_archive_path in zip(audio_archives, local_extracted_archives_paths):
115
- for audio_filename, audio_file in audio_archive:
116
- audio_id =os.path.splitext(os.path.basename(audio_filename))[0]
117
- path = os.path.join(local_extracted_archive_path, audio_filename) if local_extracted_archive_path else audio_filename
118
-
119
- yield audio_id, {
120
- "audio_id": audio_id,
121
- **{feature: metadata[audio_id][feature] for feature in features},
122
- "audio": {"path": path, "bytes": audio_file.read()},
123
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
corpus/speech/train.tar.gz → wikipedia_spanish/train-00000-of-00004.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:737565c020f4aba7614da14e80a611949280045bc30b6b3686ad3390cc8e3b1e
3
- size 1887571669
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0c1a87c92ec8519df71a7a7a5ab0fc3a460418862d413636f4dfec24c2119c1
3
+ size 466406208
wikipedia_spanish/train-00001-of-00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d74940dc6fc7b09e678da46d4be0bb3c95f10f8499b5fdbd3f413095dca193be
3
+ size 467607299
wikipedia_spanish/train-00002-of-00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ddae25a0efbbfb85b5dea161ac42231e5fd9494857eec25ad3711447ea658aa
3
+ size 490191413
wikipedia_spanish/train-00003-of-00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00036f563667463a96a92548b110e8ecde39fe2a064183bb8393d66634f74692
3
+ size 462914210