Update builder.py
Browse files- builder.py +5 -0
builder.py
CHANGED
|
@@ -99,6 +99,11 @@ class NepaliAsr(datasets.GeneratorBasedBuilder):
|
|
| 99 |
license=_LICENSE,
|
| 100 |
# Citation for the dataset
|
| 101 |
citation=_CITATION,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
)
|
| 103 |
|
| 104 |
def _split_generators(self, dl_manager):
|
|
|
|
| 99 |
license=_LICENSE,
|
| 100 |
# Citation for the dataset
|
| 101 |
citation=_CITATION,
|
| 102 |
+
task_templates=[
|
| 103 |
+
datasets.tasks.AutomaticSpeechRecognition(
|
| 104 |
+
audio_column="utterance", transcription_column="transcription"
|
| 105 |
+
)
|
| 106 |
+
],
|
| 107 |
)
|
| 108 |
|
| 109 |
def _split_generators(self, dl_manager):
|