We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3c47c4 commit 2df3e2bCopy full SHA for 2df3e2b
datasets/multilingual_librispeech/multilingual_librispeech.py
@@ -19,6 +19,7 @@
19
20
import glob
21
import os
22
+import warnings
23
24
import datasets
25
from datasets.tasks import AutomaticSpeechRecognition
@@ -70,6 +71,15 @@ class MultilingualLibrispeech(datasets.GeneratorBasedBuilder):
70
71
]
72
73
def _info(self):
74
+
75
+ warnings.warn(
76
+ """
77
+ This version of the Multilingual Librispeech dataset doesn't support streaming and is deprecated.
78
+ You can download the latest one with
79
+ >>> load_dataset(\"facebook/multilingual_librispeech\", \"polish\")
80
81
+ )
82
83
return datasets.DatasetInfo(
84
description=_DESCRIPTION,
85
features=datasets.Features(
0 commit comments