Datasets:
ArXiv:
License:
error fix
Browse files- snow-mountain.py +1 -1
snow-mountain.py
CHANGED
@@ -196,6 +196,6 @@ class Test(datasets.GeneratorBasedBuilder):
|
|
196 |
yield key, {
|
197 |
"sentence": row["sentence"],
|
198 |
"path": row["path"],
|
199 |
-
"audio":{"path": row["path"], "bytes": downloaded_audio}
|
200 |
}
|
201 |
key+=1
|
|
|
196 |
yield key, {
|
197 |
"sentence": row["sentence"],
|
198 |
"path": row["path"],
|
199 |
+
"audio":{"path": row["path"], "bytes": downloaded_audio.read()}
|
200 |
}
|
201 |
key+=1
|