cannot load zh-CN

#15
by hingeloss - opened
FileNotFoundError: Couldn't find file at https://huggingface.co/datasets/mozilla-foundation/common_voice_17_0/resolve/main/transcript/zh-CN/invalidated.tsv

file does appear to be missing, others load fine.

    ds = load_dataset(
        "mozilla-foundation/common_voice_17_0",
        language_code,
        split=split,
        use_auth_token=True,
    )
rm -rf  your_cache_dir/mozilla-foundation___common_voice_17_0/zh-CN
# add it in common_voice_17_0.py:147
splits = [split for split in splits if n_shards[lang][split] > 0]

you can edit the file to fix the bug(~/.cache/huggingface/modules/datasets_modules/datasets/mozilla-foundation--common_voice_17_0/9d10386a731ff6e6ed4ec973a4dc204a9820e8c842fbe388bdba0dd205ed5016/common_voice_17_0.py)

Sign up or log in to comment