Update datasets.py
Browse files- datasets.py +2 -2
datasets.py
CHANGED
|
@@ -66,7 +66,7 @@ class Minds14(datasets.GeneratorBasedBuilder):
|
|
| 66 |
{
|
| 67 |
"path": datasets.Value("string"),
|
| 68 |
"audio": datasets.Audio(sampling_rate=16_000),
|
| 69 |
-
"
|
| 70 |
}
|
| 71 |
)
|
| 72 |
|
|
@@ -113,6 +113,6 @@ class Minds14(datasets.GeneratorBasedBuilder):
|
|
| 113 |
yield key, {
|
| 114 |
"path": filepath,
|
| 115 |
"audio": filepath,
|
| 116 |
-
"
|
| 117 |
}
|
| 118 |
key += 1
|
|
|
|
| 66 |
{
|
| 67 |
"path": datasets.Value("string"),
|
| 68 |
"audio": datasets.Audio(sampling_rate=16_000),
|
| 69 |
+
"reference": datasets.Value("string"),
|
| 70 |
}
|
| 71 |
)
|
| 72 |
|
|
|
|
| 113 |
yield key, {
|
| 114 |
"path": filepath,
|
| 115 |
"audio": filepath,
|
| 116 |
+
"reference": reference,
|
| 117 |
}
|
| 118 |
key += 1
|