mls_without_script
#15
by
ylacombe
HF staff
- opened
- The dataset is available in parquet format directly, avoiding the use of a script to download it
- The README is enriched like indicated in #10
ylacombe
changed pull request status to
open
I won't be able to push the English subset until next month, so if someone want to do it, here's a snippet that'll help!
from datasets import load_dataset
dataset = load_dataset("parler-tts/mls_eng", num_proc=24)
pushed = False
while not pushed:
try:
dataset.push_to_hub("facebook/multilingual_librispeech", "english", create_pr=True)
pushed = True
except:
pass
Awesome ! I think you still need to remove the script though:
In [1]: from datasets import load_dataset
In [2]: ds = load_dataset("facebook/multilingual_librispeech", revision="refs/pr/15", streaming=True)
Downloading builder script: 100%|βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ| 10.1k/10.1k [00:00<00:00, 84.6kB/s]
Downloading readme: 100%|ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ| 18.1k/18.1k [00:00<00:00, 144kB/s]
The repository for facebook/multilingual_librispeech contains custom code which must be executed to correctly load the dataset. You can inspect the repository content at https://hf.co/datasets/facebook/multilingual_librispeech.
You can avoid this prompt in future by passing the argument `trust_remote_code=True`.
Do you wish to run the custom code? [y/N]
Done! Could you try again to verify ?
Awesome ! Streaming also works better :)
lhoestq
changed pull request status to
merged