Commit ·
cd5dfd8
1
Parent(s): 081fbde
Update usu_asa_asr.py
Browse files- usu_asa_asr.py +2 -2
usu_asa_asr.py
CHANGED
|
@@ -82,10 +82,10 @@ class ASA(datasets.GeneratorBasedBuilder):
|
|
| 82 |
|
| 83 |
archive_path = dl_manager.download_and_extract(self.config.data_url)
|
| 84 |
audio_path = dl_manager.extract(
|
| 85 |
-
os.path.join(archive_path, "
|
| 86 |
)
|
| 87 |
text_path = dl_manager.extract(
|
| 88 |
-
os.path.join(archive_path, "
|
| 89 |
)
|
| 90 |
|
| 91 |
text_path = {l: os.path.join(text_path, f"{l}.csv") for l in langs}
|
|
|
|
| 82 |
|
| 83 |
archive_path = dl_manager.download_and_extract(self.config.data_url)
|
| 84 |
audio_path = dl_manager.extract(
|
| 85 |
+
os.path.join(archive_path, "usu_asa_asr", "audio.zip")
|
| 86 |
)
|
| 87 |
text_path = dl_manager.extract(
|
| 88 |
+
os.path.join(archive_path, "usu_asa_asr", "data.csv")
|
| 89 |
)
|
| 90 |
|
| 91 |
text_path = {l: os.path.join(text_path, f"{l}.csv") for l in langs}
|