Dataset Loading Error
When attempting to load the GAIA 2023 dataset using the following command:
eval_ds = datasets.load_dataset("gaia-benchmark/GAIA", "2023_all")[SET]
I encountered a ValueError:
ValueError: Couldn't infer the same data file format for all splits. Got {
NamedSplit('validation'): ('imagefolder', {}),
NamedSplit('test'): ('text', {})
}
Additionally, trying to load only the test split directly:
test_ds = load_dataset("gaia-benchmark/GAIA", "2023_all", split="test")
also fails with the same error.
Could you please clarify:
Is this the expected behavior for the dataset structure?
If not, what modifications are needed to properly load the dataset?
Thank you for your assistance!
Hi!
Interesting, I'm not getting the error doing the following ds = load_dataset("gaia-benchmark/GAIA", "2023_all", split="test", trust_remote_code=True)
. Does this command fail for you?
Could you please provide the full stack trace?