fix wolof dev transcripts
Browse files- aloresb.py +0 -2
aloresb.py
CHANGED
@@ -109,7 +109,6 @@ class Aloresb(datasets.GeneratorBasedBuilder):
|
|
109 |
),
|
110 |
]
|
111 |
if self.config.name in ["hausa", "wolof"]:
|
112 |
-
print('IIIIIIIIII')
|
113 |
return train_splits + [
|
114 |
datasets.SplitGenerator(
|
115 |
name=datasets.Split.VALIDATION, gen_kwargs={
|
@@ -142,7 +141,6 @@ class Aloresb(datasets.GeneratorBasedBuilder):
|
|
142 |
Generate examples as dicts.
|
143 |
"""
|
144 |
transcripts = {}
|
145 |
-
print('XXXXX', transcript_path)
|
146 |
with open(transcript_path, encoding="utf-8") as f:
|
147 |
for line in f:
|
148 |
audio_id, text = line.strip().split("\t")
|
|
|
109 |
),
|
110 |
]
|
111 |
if self.config.name in ["hausa", "wolof"]:
|
|
|
112 |
return train_splits + [
|
113 |
datasets.SplitGenerator(
|
114 |
name=datasets.Split.VALIDATION, gen_kwargs={
|
|
|
141 |
Generate examples as dicts.
|
142 |
"""
|
143 |
transcripts = {}
|
|
|
144 |
with open(transcript_path, encoding="utf-8") as f:
|
145 |
for line in f:
|
146 |
audio_id, text = line.strip().split("\t")
|