carlosdanielhernandezmena commited on
Commit
1a180fc
•
1 Parent(s): a72f842
README.md CHANGED
@@ -1,3 +1,34 @@
1
  ---
2
  license: gpl-3.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
1
  ---
2
  license: gpl-3.0
3
+ dataset_info:
4
+ config_name: voxforge_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: country
15
+ dtype: string
16
+ - name: gender
17
+ dtype: string
18
+ - name: duration
19
+ dtype: float32
20
+ - name: normalized_text
21
+ dtype: string
22
+ splits:
23
+ - name: train
24
+ num_bytes: 3796458902.464
25
+ num_examples: 21692
26
+ download_size: 3441019616
27
+ dataset_size: 3796458902.464
28
+ configs:
29
+ - config_name: voxforge_spanish
30
+ data_files:
31
+ - split: train
32
+ path: voxforge_spanish/train-*
33
+ default: true
34
  ---
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,6 +0,0 @@
1
- corpus/speech/train/argentina.tar.gz
2
- corpus/speech/train/chile.tar.gz
3
- corpus/speech/train/latin_america.tar.gz
4
- corpus/speech/train/mexico.tar.gz
5
- corpus/speech/train/spain.tar.gz
6
- corpus/speech/train/unknown.tar.gz
 
 
 
 
 
 
 
corpus/speech/train/remove.txt DELETED
File without changes
corpus/speech/train/spain.tar.gz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:de507d80db74ee777766af6ef7213e12a44fd6b639dc3fc78fcf0c32e0c1101e
3
- size 2565077667
 
 
 
 
corpus/speech/train/unknown.tar.gz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:22b01b9151ea36e0792021d5334fc5c85b7dc00eca8a0d6cc9169790e2cd1712
3
- size 76117697
 
 
 
 
voxforge_spanish.py DELETED
@@ -1,121 +0,0 @@
1
- from collections import defaultdict
2
- import os
3
- import json
4
- import csv
5
- import datasets
6
-
7
- _NAME="voxforge_spanish"
8
- _VERSION="1.0.0"
9
-
10
- _DESCRIPTION = """
11
- The VOXFORGE SPANISH CORPUS has a duration of 49 hours and it is constituted by read speech
12
- recorded by more than 2 thousand speakers. Most of the speakers contribute with 10 recordings
13
- of approximately 10 seconds of duration each.
14
- """
15
-
16
- _CITATION = """
17
- @misc{menavoxforgespanish2017,
18
- title={VOXFORGE SPANISH CORPUS: Audio and Transcripts in Spanish with a CIEMPIESS Corpus style, taken from voxforge.org},
19
- author={Hernandez Mena, Carlos Daniel},
20
- year={2017},
21
- url={https://huggingface.co/ciempiess/voxforge_spanish},
22
- }
23
- """
24
-
25
- _HOMEPAGE = "https://huggingface.co/ciempiess/voxforge_spanish"
26
-
27
- _LICENSE = "GPLv3, See https://www.gnu.org/licenses/gpl.txt"
28
-
29
- _BASE_DATA_DIR = "corpus/"
30
- _METADATA_TRAIN = os.path.join(_BASE_DATA_DIR,"files", "metadata_train.tsv")
31
-
32
- _TARS_TRAIN = os.path.join(_BASE_DATA_DIR,"files", "tars_train.paths")
33
-
34
- class VoxforgeSpanishConfig(datasets.BuilderConfig):
35
- """BuilderConfig for VOXFORGE SPANISH CORPUS"""
36
-
37
- def __init__(self, name, **kwargs):
38
- name=_NAME
39
- super().__init__(name=name, **kwargs)
40
-
41
- class VoxforgeSpanish(datasets.GeneratorBasedBuilder):
42
- """VOXFORGE SPANISH CORPUS"""
43
-
44
- VERSION = datasets.Version(_VERSION)
45
- BUILDER_CONFIGS = [
46
- VoxforgeSpanishConfig(
47
- name=_NAME,
48
- version=datasets.Version(_VERSION),
49
- )
50
- ]
51
-
52
- def _info(self):
53
- features = datasets.Features(
54
- {
55
- "audio_id": datasets.Value("string"),
56
- "audio": datasets.Audio(sampling_rate=16000),
57
- "speaker_id": datasets.Value("string"),
58
- "country": datasets.Value("string"),
59
- "gender": datasets.Value("string"),
60
- "duration": datasets.Value("float32"),
61
- "normalized_text": datasets.Value("string"),
62
- }
63
- )
64
- return datasets.DatasetInfo(
65
- description=_DESCRIPTION,
66
- features=features,
67
- homepage=_HOMEPAGE,
68
- license=_LICENSE,
69
- citation=_CITATION,
70
- )
71
-
72
- def _split_generators(self, dl_manager):
73
-
74
- metadata_train=dl_manager.download_and_extract(_METADATA_TRAIN)
75
-
76
- tars_train=dl_manager.download_and_extract(_TARS_TRAIN)
77
-
78
- hash_tar_files=defaultdict(dict)
79
-
80
- with open(tars_train,'r') as f:
81
- hash_tar_files['train']=[path.replace('\n','') for path in f]
82
-
83
- hash_meta_paths={"train":metadata_train}
84
- audio_paths = dl_manager.download(hash_tar_files)
85
-
86
- splits=["train"]
87
- local_extracted_audio_paths = (
88
- dl_manager.extract(audio_paths) if not dl_manager.is_streaming else
89
- {
90
- split:[None] * len(audio_paths[split]) for split in splits
91
- }
92
- )
93
-
94
- return [
95
- datasets.SplitGenerator(
96
- name=datasets.Split.TRAIN,
97
- gen_kwargs={
98
- "audio_archives": [dl_manager.iter_archive(archive) for archive in audio_paths["train"]],
99
- "local_extracted_archives_paths": local_extracted_audio_paths["train"],
100
- "metadata_paths": hash_meta_paths["train"],
101
- }
102
- ),
103
- ]
104
-
105
- def _generate_examples(self, audio_archives, local_extracted_archives_paths, metadata_paths):
106
-
107
- features = ["speaker_id","country","gender","duration","normalized_text"]
108
-
109
- with open(metadata_paths) as f:
110
- metadata = {x["audio_id"]: x for x in csv.DictReader(f, delimiter="\t")}
111
-
112
- for audio_archive, local_extracted_archive_path in zip(audio_archives, local_extracted_archives_paths):
113
- for audio_filename, audio_file in audio_archive:
114
- audio_id =os.path.splitext(os.path.basename(audio_filename))[0]
115
- path = os.path.join(local_extracted_archive_path, audio_filename) if local_extracted_archive_path else audio_filename
116
-
117
- yield audio_id, {
118
- "audio_id": audio_id,
119
- **{feature: metadata[audio_id][feature] for feature in features},
120
- "audio": {"path": path, "bytes": audio_file.read()},
121
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
corpus/speech/train/latin_america.tar.gz → voxforge_spanish/train-00000-of-00008.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:26caa8119d14c3adae61dee955c3edc5d951ded8cd31031527a3885ba8ea33c3
3
- size 257243917
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:625be7793994a2aea3f38f4811104cb5b0651a329f6ca0f20d1bf23bf367cd02
3
+ size 453137913
corpus/speech/train/mexico.tar.gz → voxforge_spanish/train-00001-of-00008.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a6275a25a0811116a059ccca481b03ea041056d9a4d4aaf94e7bb5ec3f507b8a
3
- size 130648101
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1790016568ac65d258dcda18e1d24c1d490abb2fda8d3038a5a3f1ec346ed6f
3
+ size 444785033
corpus/speech/train/argentina.tar.gz → voxforge_spanish/train-00002-of-00008.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ea3f9c4c9ee4896019d1fb93b1aca6630f70af0190e036e27e0eaf879793ca28
3
- size 297895380
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03cf8df55da1281ccc2920a3fb292b6c02763dd1382a68419b5941a3e74ff261
3
+ size 423742359
corpus/speech/train/chile.tar.gz → voxforge_spanish/train-00003-of-00008.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f71384e784fa960df6667079f13588d13e6bbc32912b002bd9104cc9f7974c1a
3
- size 113505076
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0fb7934a77335eaf1ab54b7cdf9e1c7065a100b8d84427892b12640443707384
3
+ size 424912760
voxforge_spanish/train-00004-of-00008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1cdb015f707da39b9689bf66fc22adbcabf878a18686aea13ebc65386adabbd
3
+ size 424566649
voxforge_spanish/train-00005-of-00008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:363a1de505385dd76eb29afd8cff19bbe388c4a42c4830195a86e482f71704db
3
+ size 426047739
voxforge_spanish/train-00006-of-00008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af544653b1b10bf4f32220b5279ff006371e588c388e8a73659dcc8ab2ec4fc2
3
+ size 421929705
voxforge_spanish/train-00007-of-00008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2c4594f2e80e5ca4d13df0949348b30c80706d4a3a531bf5a07827991bf75ae
3
+ size 421897458