No (supported) data files found in /MMMU/MMMU
Xiaolong-RRL opened this issue · 3 comments
Xiaolong-RRL commented
Hi, I am try to load your dataset with the provided command:
from datasets import load_dataset
sub_dataset = load_dataset("/data/datasets/MMMU", "Accounting")
However, one error reports as:
Exception has occurred: DataFilesNotFoundError
No (supported) data files found in /MMMU/MMMU
File "/data/project/bunny/test_eval_mmmu.py", line 4, in <module>
sub_dataset = load_dataset("/MMMU/MMMU", "Accounting")
datasets.exceptions.DataFilesNotFoundError: No (supported) data files found in /MMMU/MMMU
Can u check it?
drogozhang commented
NipElement commented
Hi, you can load dataset by:
from datasets import load_dataset
sub_dataset = load_dataset('MMMU/MMMU', 'Accounting')
or you can load specified split with:
from datasets import load_dataset
sub_dataset_val = load_dataset('MMMU/MMMU', 'Accounting', split='validation')
If still have problem, please update your datasets pkg😆
Xiaolong-RRL commented
Thanks, it works!