Datasets:

Languages:
English
ArXiv:

ValueError: Inconsistent data formats between validation (imagefolder) and test (text) splits in GAIA dataset

#19
by gowithme - opened

I encountered a ValueError when trying to load the GAIA dataset (gaia-benchmark/GAIA) with the configuration 2023_level1. The error message is:
ValueError: Couldn't infer the same data file format for all splits. Got {NamedSplit('validation'): ('imagefolder', {}), NamedSplit('test'): ('text', {})}
Used the following code:
from datasets import load_dataset
token = "YOUR_TOKEN"
dataset = load_dataset("gaia-benchmark/GAIA", "2023_level1", token=token)
Expected behavior: Load the dataset with consistent splits (validation and test).
Could you please take a look and see what the reason is?

Validation has answer whereas test does not, iirc. You need to load the dataset while ignoring these warning as is done in the leaderboard code :)

clefourrier changed discussion status to closed
Your need to confirm your account before you can post a new comment.

Sign up or log in to comment