-
Notifications
You must be signed in to change notification settings - Fork 568
Open
Labels
Description
When running this dataset EncyclopediaVQAIT2ITRetrieval:
We can check the dataloader:
dl = _create_queries_dataloader(
dataset,
task_metadata,
batch_size=batch_size,
input_column=input_column,
num_proc=num_proc,
)
next(iter(dl)).keys() # dict_keys(['image'])even though the dataset:
Dataset({
features: ['id', 'modality', 'text', 'image'],
num_rows: 3743
})
@Samoed I assume that this is not desired behaviour would expect # dict_keys(['image', 'text'])
Reactions are currently unavailable