Vision Language Models See What You Want but not What You See
Paper
•
2410.00324
•
Published
Error code: JobManagerCrashedError
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
This dataset contains image-question pairs for perspective-taking tasks.
The dataset is organized into train and test splits for each concept. Each sample consists of:
id: Question identifierconcept: The concept category the question belongs toquestion: The question text from question.txtanswer: The answer text from answer.txt (when available)image: Filename of the primary imageadditional_images: Additional images if presentadditional_text: Additional text files with their contentsplit: Train or test splitfrom datasets import load_dataset
# Load the dataset
dataset = load_dataset("path/to/dataset")
# Access examples
sample = dataset["train"][0]
print(f"Question: {sample['question']}")
print(f"Answer: {sample.get('answer', 'No answer available')}")
print(f"Image path: {sample['image']}")
# If the sample has additional images
if 'additional_images' in sample and sample['additional_images']:
print(f"Additional images: {sample['additional_images']}")
@article{gao2024vision,
title={Vision Language Models See What You Want but not What You See},
author={Gao, Qingying and Li, Yijiang and Lyu, Haiyun and Sun, Haoran and Luo, Dezhi and Deng, Hokin},
journal={arXiv preprint arXiv:2410.00324},
year={2024}
}
arxiv link: https://arxiv.org/abs/2410.00324