-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BuilderConfig questions #13
Comments
Unable to Reproduce the Bug To verify the issue, please run the following code and share your results: from datasets import get_dataset_config_names
configs = get_dataset_config_names("TwinkStart/tedlium")
print(configs)
from datasets import get_dataset_config_names
configs = get_dataset_config_names("google/fleurs")
print(configs) |
and I use comands with in /UltraEval-Audio-main/registry/dataset/fleurs.yaml, it is this: fleurs-zh: |
I know this config, you should run the following code with your python shell: from datasets import get_dataset_config_names
configs = get_dataset_config_names("TwinkStart/tedlium")
print(configs)
from datasets import get_dataset_config_names
configs = get_dataset_config_names("google/fleurs")
print(configs) and share your results |
yes, the results are both ['default'] from datasets import get_dataset_config_names |
You need check:
it should be like:
|
which verison do you use? I use datasets ==3.3.2. I also try 3.4.1, but it is not ok for me. I've downloaded the data locally. ./TwinkStart/tedlium/release1/test-00000-of-00001.parquet ./google/fleurs/data/cmn_hans_cn/audio/test.tar.gz |
you can try download hf data with following code save_path='xx'
dataset = load_dataset('TwinkStart/tedlium', name='release1', cache_dir=save_path) |
I will try it, thanks ! |
hello, When I test tedlium and fleurs-zh, I get these errors,
ERROR - load args is {'path': 'TwinkStart/tedlium', 'name': 'release1'}load dataset error: BuilderConfig 'release1' not found. Available: ['default']
ERROR - load args is {'path': 'google/fleurs', 'name': 'cmn_hans_cn', 'split': 'test'}load dataset error: BuilderConfig 'cmn_hans_cn' not found. Available: ['default']
how to solve it ? thanks !
The text was updated successfully, but these errors were encountered: